-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.28 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
{
"name": "@4a/retry",
"version": "0.2.1",
"type": "module",
"files": ["dist"],
"main": "./dist/retry.umd.cjs",
"module": "./dist/retry.js",
"scripts": {
"dev": "vite",
"preview": "vite preview",
"test": "vitest --run",
"build": "vue-tsc && vite build && npm run type",
"type": "tsc src/lib/retry.ts --lib es2015,dom --declarationDir dist --emitDeclarationOnly --declaration",
"coverage": "NODE_ENV=development vitest run --coverage",
"prepack": "npm run build",
"prepublish": "npm run build"
},
"exports": {
".": {
"import": "./dist/retry.js",
"require": "./dist/retry.umd.cjs"
}
},
"prettier": {
"semi": false
},
"author": "gavinning <gavinning@qq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gavinning/retry.git"
},
"bugs": {
"url": "https://github.com/gavinning/retry/issues"
},
"homepage": "https://github.com/gavinning/retry#readme",
"keywords": [
"retry",
"auto-retry",
"retry-request",
"retry-axios"
],
"peerDependencies": {
"axios": "*"
},
"devDependencies": {
"vue": "^3.2.47",
"@vitejs/plugin-vue": "^4.1.0",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vitest": "^0.32.2",
"vue-tsc": "^1.4.2"
}
}