forked from Tencent/tdesign-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.03 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
{
"name": "tdesign-icons-vue-next",
"version": "0.3.3",
"repository": {
"type": "git",
"url": "https://github.com/Tencent/tdesign-icons.git",
"directory": "packages/vue-next"
},
"homepage": "https://github.com/Tencent/tdesign-icons/blob/develop/README.md",
"bugs": {
"url": "https://github.com/Tencent/tdesign-icons/issues"
},
"files": [
"dist",
"esm",
"lib",
"types",
"README.md",
"CHANGELOG.md"
],
"main": "lib/index.js",
"module": "esm/index.js",
"unpkg": "dist/index.min.js",
"sideEffects": [
"dist/**/*",
"esm/style/**/*",
"lib/style/**/*"
],
"scripts": {
"prebuild": "rimraf esm/* lib/* dist/*",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js && npm run build:tsc",
"build:tsc": "concurrently \"npm:build:tsc-*\"",
"build:tsc-esm": "tsc --emitDeclarationOnly -d --outDir esm/",
"build:tsc-lib": " tsc --emitDeclarationOnly -d --outDir lib/"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/babel-preset-jsx": "^1.2.4",
"camelcase": "^6.2.0",
"concurrently": "^6.4.0",
"cross-env": "^7.0.3",
"esbuild": "^0.14.0",
"less": "^4.1.2",
"postcss": "^8.4.4",
"rollup": "^2.42.1",
"rollup-plugin-esbuild": "^4.7.2",
"rollup-plugin-ignore-import": "^1.3.2",
"rollup-plugin-less": "^1.1.3",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-static-import": "^0.1.1",
"rollup-plugin-styles": "^3.14.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"tslib": "^2.1.0",
"typescript": "4.4.4",
"vue": "3"
},
"dependencies": {
"@babel/runtime": "^7.16.3"
}
}