-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 3.1 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@fe6/icon-monorepo",
"scripts": {
"preinstall": "node scripts/preinstall && husky install",
"gen:json": "esno scripts/gen-json.ts",
"gen:code": "esno scripts/gen-code.ts",
"gen:clean": "gulp cleanCode",
"gen:rollup": "cross-env NODE_OPTIONS=\"--max-old-space-size=6144\" rollup -c",
"gen": "pnpm gen:clean && pnpm gen:json && pnpm gen:code",
"id": "esno scripts/get-ids.ts",
"lint": "pretty-quick",
"release:before": "esno ./scripts/release-hooks-before",
"build:code": "gulp",
"move": "gulp moveFile && esno ./scripts/gen-icon-json"
},
"packageManager": "[email protected]",
"peerDependencies": {
"vue": "3.x"
},
"dependencies": {
"vue": "^3.2.31"
},
"devDependencies": {
"@antfu/ni": "^0.10.0",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.8",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@fe6/norm-git-cz-config": "^0.1.1",
"@fe6/norm-prettier": "^0.1.0",
"@fe6/shared": "^0.11.0",
"@rollup/plugin-typescript": "^8.3.1",
"@types/babel__core": "^7.1.16",
"@types/css-tree": "^1.0.6",
"@types/gulp": "^4.0.9",
"@types/gulp-babel": "^6.1.30",
"@types/gulp-clean-css": "^4.3.0",
"@types/gulp-less": "^0.0.32",
"@types/gulp-rename": "^2.0.1",
"@types/merge2": "^1.3.1",
"@types/mkdirp": "^1.0.2",
"@types/node": "^17.0.21",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.9",
"@types/tinycolor2": "^1.4.3",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/reactivity": "^3.2.20",
"@vue/runtime-core": "^3.2.20",
"@vue/runtime-dom": "^3.2.20",
"@vue/shared": "^3.2.20",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"css-tree": "^1.1.3",
"csv-parse": "^4.16.3",
"csv-stringify": "^5.6.5",
"cz-customizable": "^6.3.0",
"del": "^6.0.0",
"esbuild": "^0.14.25",
"esbuild-register": "^3.3.2",
"esno": "^0.14.1",
"execa": "^5.1.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-copy": "^4.0.1",
"gulp-less": "^5.0.0",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^7.0.2",
"less": "^4.1.2",
"merge2": "^1.4.1",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.1",
"prompts": "^2.4.2",
"rollup": "^2.70.0",
"rollup-plugin-esbuild": "^4.8.2",
"semver": "^7.3.5",
"tinycolor2": "^1.4.2",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"xml-js": "^1.6.11"
},
"engines": {
"node": ">= 16.0.0",
"pnpm": ">=6"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "node_modules/@fe6/norm-git-cz-config/customizable.js"
}
},
"pnpm": {
"overrides": {
"@fe6/icon-compiler": "workspace:^",
"@fe6/icon-cube-vue": "workspace:^",
"@fe6/icon-vue": "workspace:^",
"@fe6/icon-img": "workspace:^"
}
}
}