ani-client 1.8.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ani-client",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "description": "A simple and typed client to fetch anime, manga, characters and user data from AniList",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -12,7 +12,9 @@
12
12
  "require": "./dist/index.js"
13
13
  }
14
14
  },
15
- "files": ["dist"],
15
+ "files": [
16
+ "dist"
17
+ ],
16
18
  "sideEffects": false,
17
19
  "scripts": {
18
20
  "build": "tsup",
@@ -23,14 +25,22 @@
23
25
  "test": "vitest run",
24
26
  "test:unit": "vitest run --project unit",
25
27
  "test:integration": "vitest run --project integration",
26
- "test:coverage": "vitest run --coverage",
28
+ "test:coverage": "vitest run --project unit --coverage",
27
29
  "typecheck": "tsc --noEmit",
28
30
  "prepublishOnly": "pnpm run build",
29
31
  "docs:dev": "vitepress dev docs",
30
32
  "docs:build": "vitepress build docs",
31
33
  "docs:preview": "vitepress preview docs"
32
34
  },
33
- "keywords": ["anilist", "anime", "manga", "graphql", "api", "client", "typescript"],
35
+ "keywords": [
36
+ "anilist",
37
+ "anime",
38
+ "manga",
39
+ "graphql",
40
+ "api",
41
+ "client",
42
+ "typescript"
43
+ ],
34
44
  "author": "gonzyui",
35
45
  "license": "MIT",
36
46
  "engines": {
@@ -45,8 +55,10 @@
45
55
  "url": "https://github.com/gonzyui/ani-client/issues"
46
56
  },
47
57
  "devDependencies": {
48
- "@biomejs/biome": "^1.9.4",
58
+ "@biomejs/biome": "^2.4.5",
49
59
  "@types/node": "^25.3.2",
60
+ "@vercel/analytics": "^2.0.0",
61
+ "@vitest/coverage-v8": "^3.2.4",
50
62
  "tsup": "^8.5.1",
51
63
  "tsx": "^4.21.0",
52
64
  "typescript": "^5.9.3",
@@ -54,5 +66,10 @@
54
66
  "vitest": "^3.2.4",
55
67
  "vue": "^3.5.29"
56
68
  },
57
- "packageManager": "pnpm@10.30.0"
69
+ "packageManager": "pnpm@10.30.3",
70
+ "pnpm": {
71
+ "overrides": {
72
+ "esbuild": "^0.25.0"
73
+ }
74
+ }
58
75
  }