-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "@axios-use/vue",
"version": "0.2.5",
"description": "A Vue composition utilities for Axios.",
"type": "module",
"main": "lib/index.cjs",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"unpkg": "dist/axios-use-vue.umd.js",
"scripts": {
"build": "rimraf lib esm dist; npm run build:js; npm run build:type",
"build:js": "vite build",
"build:type": "tsc --outDir ./esm --emitDeclarationOnly",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"lint:fix": "npm run lint --fix",
"format": "prettier --write '**/*' --config ./.prettierrc",
"postinstall": "node ./demi/postinstall.cjs",
"prepare": "npm run build"
},
"author": "wangcch <wangcch.cc@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/axios-use/axios-use-vue.git"
},
"keywords": [
"axios",
"hooks",
"vue",
"request",
"useAxios",
"useRequest",
"useResource",
"Composition"
],
"peerDependencies": {
"axios": ">=0.21.4",
"vue": ">=2.7.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@vitejs/plugin-vue": "^4.4.1",
"@vitest/coverage-c8": "^0.29.8",
"@vue/compiler-dom": "^3.2.47",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/server-renderer": "^3.2.47",
"@vue/test-utils": "^2.3.2",
"axios": "^1.3.4",
"eslint": "^8.35.0",
"eslint-plugin-vue": "^9.9.0",
"jsdom": "^21.1.1",
"msw": "^1.1.0",
"prettier": "^2.8.4",
"rimraf": "^5.0.5",
"typescript": "^4.9.5",
"vite": "^4.5.0",
"vitest": "^0.29.8",
"vue": "^3.2.47",
"vue2": "npm:vue@2.7.14"
}
}