generated from Gabb-c/node-ts-lib-setup
-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
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": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"default": "./lib/index.cjs"
},
"main": "lib/index.cjs",
"module": "lib/index.js",
"files": ["lib"],
"types": "lib/index.d.ts",
"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.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@size-limit/preset-small-lib": "^11.1.6",
"@swc/core": "^1.10.7",
"@types/is-ci": "^3.0.4",
"@types/node": "^22.10.7",
"@vitest/coverage-v8": "^3.0.1",
"@vitest/ui": "^3.0.1",
"axios": "^1.7.9",
"axios-cache-interceptor": "^1.6.2",
"ci-info": "^4.1.0",
"http-status-codes": "^2.3.0",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lint-staged": "^15.4.1",
"msw": "^2.7.0",
"semantic-release": "^24.2.1",
"size-limit": "^11.1.6",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4",
"vitepress": "1.5.0",
"vitest": "^3.0.1",
"vue": "^3.5.13"
},
"peerDependencies": {
"axios": "^1.7.9",
"axios-cache-interceptor": "^1.6.2"
},
"engines": {
"node": ">=16"
},
"size-limit": [
{
"path": "lib/index.js"
}
],
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": ["@algolia/client-search", "search-insights"]
}
}
}