-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 2.12 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
{
"name": "@uni-helper/axios-adapter",
"type": "module",
"version": "1.5.2",
"packageManager": "[email protected]",
"description": "The Axios adapter for uniapp",
"author": {
"name": "kejunmao",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/uni-helper/axios-adapter",
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/axios-adapter.git"
},
"keywords": [
"uniapp",
"axios",
"uni-app",
"axiosAdapter"
],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./vite": {
"import": {
"types": "./dist/vite.d.ts",
"default": "./dist/vite.js"
},
"require": {
"types": "./dist/vite.d.cts",
"default": "./dist/vite.cjs"
}
},
"./webpack": {
"import": {
"types": "./dist/webpack.d.ts",
"default": "./dist/webpack.js"
},
"require": {
"types": "./dist/webpack.d.cts",
"default": "./dist/webpack.cjs"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./client.d.ts",
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"play": "npm -C playground run dev:h5",
"prepublishOnly": "pnpm build",
"release": "bumpp",
"test": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"axios": "^1.5.0"
},
"dependencies": {
"local-pkg": "^0.5.0",
"unplugin": "^1.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.28",
"@dcloudio/types": "^3.3.3",
"@types/node": "^20.6.0",
"axios": "^1.5.0",
"bumpp": "^9.2.0",
"eslint": "^8.49.0",
"msw": "^2.0.0",
"pnpm": "^8.7.5",
"rimraf": "^5.0.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.4"
}
}