-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.07 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
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": "@varlet/axle",
"version": "1.0.2",
"description": "Progressive request tool based on axios",
"keywords": [
"axios",
"axle",
"composition api",
"helpers",
"vue3"
],
"bugs": {
"url": "https://github.com/varletjs/axle/issues"
},
"license": "MIT",
"author": "haoziqaq <357229046@qq.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/varletjs/axle.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"typesVersions": {
"*": {
"use": [
"dist/use.d.mts"
],
"api": [
"dist/api.d.mts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./use": {
"types": "./dist/use.d.mts",
"import": "./dist/use.mjs"
},
"./api": {
"types": "./dist/api.d.mts",
"import": "./dist/api.mjs"
},
"./*": "./*"
},
"scripts": {
"build": "vp pack",
"clean": "rt clean",
"dev": "vp pack --watch",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"lint": "vp lint --fix",
"format": "vp fmt",
"prepare": "vp config --hooks-dir .vite-hooks && rt hook",
"release": "pnpm build && rt release"
},
"dependencies": {
"axios": "1.7.3",
"crypto-js": "^4.2.0",
"lodash": "4.17.21",
"qs": "^6.11.0",
"rattail": "^2.0.3"
},
"devDependencies": {
"@types/crypto-js": "^4.2.1",
"@types/lodash": "4.14.202",
"@types/qs": "^6.9.7",
"oxc-minify": "^0.125.0",
"typescript": "5.3.3",
"vite-plus": "0.1.18",
"vitepress": "2.0.0-alpha.17",
"vue": "3.5.32"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"engines": {
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.0.0",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.18",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.18"
}
}
}