forked from Gabb-c/pokenode-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "pokenode-ts",
"version": "1.19.0",
"private": false,
"description": "A lightweight Node.js wrapper for the PokéAPI with built-in types.",
"keywords": ["pokeapi", "PokéAPI", "pokemon", "pokedex"],
"homepage": "https://pokenode-ts.vercel.app/",
"bugs": {
"url": "https://github.com/Gabb-c/pokenode-ts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Gabb-c/pokenode-ts"
},
"funding": "https://github.com/Gabb-c/pokenode-ts?sponsor=1",
"license": "MIT",
"author": {
"name": "Gabb-c",
"url": "https://github.com/Gabb-c"
},
"sideEffects": false,
"type": "module",
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts",
"default": "./lib/index.cjs"
},
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": ["lib"],
"scripts": {
"build": "tsup --config tsup.config.ts && size-limit",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs --force",
"docs:preview": "vitepress preview docs",
"format": "biome format ./src",
"lint:ci": "biome ci src",
"prepare": "is-ci || husky",
"prepublishOnly": "pnpm build",
"test": "vitest",
"test:types": "vitest --typecheck.only",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui --api 9527"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.7",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@size-limit/preset-small-lib": "^11.1.4",
"@swc/core": "^1.7.22",
"@types/is-ci": "^3.0.4",
"@types/node": "^22.5.2",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"axios": "^1.7.7",
"axios-cache-interceptor": "^1.5.3",
"ci-info": "^4.0.0",
"http-status-codes": "^2.3.0",
"husky": "^9.1.5",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"msw": "^2.4.1",
"semantic-release": "^24.1.0",
"size-limit": "^11.1.4",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-tsconfig-paths": "^5.0.1",
"vitepress": "1.3.4",
"vitest": "^2.0.5",
"vue": "^3.4.38"
},
"peerDependencies": {
"axios": "^1.7.7",
"axios-cache-interceptor": "^1.5.3"
},
"engines": {
"node": ">=16"
},
"size-limit": [
{
"path": "lib/index.js"
}
],
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": ["@algolia/client-search", "search-insights"]
}
}
}