forked from dewfall123/ahooks-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.65 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
{
"name": "ahooks-vue",
"version": "0.13.3",
"description": "ahooks-vue",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/dewfall123/ahooks-vue.git",
"author": "dewfall",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/ahooks-vue.umd.js",
"module": "./dist/ahooks-vue.es.js",
"exports": {
".": {
"import": "./dist/ahooks-vue.es.js",
"require": "./dist/ahooks-vue.umd.js"
}
},
"scripts": {
"dev": "vitepress-fc dev docs --host",
"build": "vite build && yarn type",
"type": "tsc -d",
"test": "jest",
"docs-build": "rimraf docs/dist && cross-env NODE_ENV=production vitepress-fc build --root=docs",
"docs-serve": "cross-env NODE_ENV=production vitepress-fc serve --root=docs",
"docs-build-serve": "cross-env NODE_ENV=true yarn docs-build && yarn docs-serve",
"docs-deploy": "gh-pages -d docs/dist -t true",
"docs-build-deploy": "yarn docs-build && yarn docs-deploy",
"pub": "yarn build && lerna publish",
"lint": "eslint --ignore-pattern **/__tests__/* --ignore-pattern **/dist/* \"src/**/*.{vue,js,ts,tsx}\"",
"lint-fix": "npm run lint -- --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "np"
},
"keywords": [
"ahooks-vue",
"ahooks",
"vue",
"vue3",
"hooks",
"vue-use",
"vue-hooks"
],
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.159",
"@types/qs": "^6.9.7",
"@types/whatwg-fetch": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"axios": "^0.21.1",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.18.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.5.0",
"gh-pages": "^3.1.0",
"intersection-observer": "^0.12.0",
"jest": "^25.1.0",
"localforage": "^1.9.0",
"lodash-es": "^4.17.20",
"mockjs": "^1.1.0",
"np": "^7.4.0",
"prettier": "^1.19.1",
"resize-observer-polyfill": "^1.5.1",
"screenfull": "^5.1.0",
"ts-jest": "^25.2.1",
"typescript": "^4.1.5",
"vitepress-for-component": "^0.16.8",
"vue": "^3.2.29",
"whatwg-fetch": "^3.5.0"
},
"homepage": "https://dewfall123.github.io/ahooks-vue/",
"dependencies": {
"lodash": "^4.17.20",
"qs": "^6.10.1",
"vue-demi": "^0.13.2"
},
"peerDependencies": {
"axios": "*"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"gitHead": "cd1142fc7d4e646d885eb1040a46c8dfed603f29"
}