-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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": "v3hooks",
"version": "1.5.0",
"author": "yanzhandong",
"description": "针对 Vue3 的实用Hooks集合",
"keywords": [
"vuehook",
"hook",
"vue3",
"vue3hook",
"v3hooks",
"vueHook"
],
"homepage": "https://yanzhandong868.gitbook.io/v3hooks/",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/yanzhandong/v3hooks.git"
},
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"test": "jest",
"watch": "rollup -c --watch",
"build": "cross-env NODE_ENV=production rollup -c"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^27.4.0",
"@types/js-cookie": "^2.2.7",
"@vue/test-utils": "^2.0.0-rc.17",
"babel-jest": "^27.5.1",
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"mockdate": "^3.0.5",
"rollup": "^2.52.6",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0",
"ts-jest": "^27.1.3",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"vue": "^3.0.11",
"vue-router": "4.0.3"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"dayjs": "^1.10.5",
"easyqrcodejs": "^4.4.5",
"js-cookie": "^2.2.1"
}
}