-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1002 Bytes
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
{
"name": "axios-server",
"version": "1.1.1",
"description": "基于axios封装的server服务类",
"main": "libs/index.min.js",
"scripts": {
"serve": "rollup -c -w",
"build": "rollup --config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderlibs/axios-server.git"
},
"keywords": [
"axios-server",
"http",
"axios",
"xhr",
"防抖提交",
"断线重连",
"节流",
"自动取消"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/coderlibs/axios-server/issues"
},
"homepage": "https://github.com/coderlibs/axios-server#readme",
"dependencies": {
"axios": "^1.6.8"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@rollup/plugin-typescript": "^11.1.6",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2"
}
}