-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 KB
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
{
"name": "@stephenhebert/axios-plugins",
"type": "module",
"version": "1.1.0",
"author": "Stephen Hebert",
"description": "A collection of Axios plugins for enhanced functionality.",
"license": "MIT",
"homepage": "https://github.com/stephenhebert/axios-plugins",
"bugs": {
"url": "https://github.com/stephenhebert/axios-plugins/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephenhebert/axios-plugins.git"
},
"main": "/dist/index.js",
"files": [
"dist"
],
"types": "/dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"release": "npx bumpp package.json --commit \"release: v\" --push --tag",
"lint": "eslint ."
},
"peerDependencies": {
"axios": "^1.9.0"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@stylistic/eslint-plugin": "^4.4.0",
"axios": "^1.9.0",
"eslint": "^9.28.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^16.2.0",
"msw": "^2.9.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.33.1",
"vite": "^6.3.5",
"vitest": "^3.2.0"
},
"keywords": [
"axios",
"plugins",
"middleware",
"interceptors",
"http",
"typescript",
"javascript",
"api"
],
"publishConfig": {
"access": "public"
}
}