-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.43 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
{
"name": "vue3-ts-util",
"version": "2.1.4",
"main": "dist/index.js",
"module": "es/src/index.js",
"types": "es/index.d.ts",
"license": "MIT",
"sideEffects": [
"es/**/*.{vue,css}.js"
],
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.3.0",
"@types/jest": "^26.0.24",
"@types/ramda": "^0.27.44",
"@types/rollup-plugin-auto-external": "^2.0.2",
"@vue/babel-plugin-jsx": "^1.0.6",
"@vue/compiler-sfc": "^3.1.4",
"@webpack-cli/generators": "^2.2.0",
"ant-design-vue": "2",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"css-loader": "^6.0.0",
"jest": "^27.0.6",
"mini-css-extract-plugin": "^2.1.0",
"postcss": "^8.3.5",
"postcss-load-config": "^3.1.0",
"postcss-loader": "^6.1.1",
"prettier": "^2.3.2",
"rollup": "^2.53.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-styles": "^3.14.1",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.1.0",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"vue": "3.2",
"vue-loader": "^16.3.0",
"vue-router": "^4.0.0",
"vuex": "^4.0.0",
"vuex-dispatch-infer": "^0.7.3",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"dayjs": "^1.11.8",
"eventemitter3": "^5.0.0",
"lodash-commonjs-es": "^1.0.5",
"ramda": "^0.27.1"
},
"peerDependencies": {
"ant-design-vue": ">=2.0.0",
"vue": ">=3.0.0",
"vue-router": ">=4.0.0",
"vuex": ">=4.0.0"
},
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
},
"scripts": {
"build": "yarn clean && yarn rollup -c",
"clean": "rm -rf ./dist ./es",
"dev-watch": "ts-node --project tsnode.config.json scripts/index.ts --dev-watch",
"gen-contents": "ts-node --project tsnode.config.json scripts/index.ts --gen-contents",
"import-optimize": "ts-node --project tsnode.config.json scripts/index.ts --import-optimize",
"pre-release": "yarn build && yarn import-optimize && yarn test && nrm use npm",
"test": "NODE_OPTIONS=--unhandled-rejections=warn yarn jest",
"gen-vue-type": "ts-node --project tsnode.config.json scripts/index.ts --gen-vue-type"
}
}