-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.47 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
{
"name": "@spark-build/transform-antd-theme-variable",
"version": "0.0.5",
"description": "将 antd 的变量转化为 css variable,以实现无 runtime 的实时动态主题切换",
"author": "[email protected]",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"bin": {
"transform-antd-theme-variable": "dist/bin/index.js",
"generateThemeVariable": "dist/bin/generateThemeVariable.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"build": "rimraf -rf dist && tsc --build tsconfig.json",
"dev:inspect": "yarn ts-node-dev --inspect=9229 --respawn --files src --initialRun --force",
"dev:inspect-noCoverage": "yarn ts-node-dev --inspect=9229 --respawn --files src --initialRun",
"generateThemeVariable:inspect": "yarn ts-node-dev --inspect=9229 --respawn --files src/generateThemeVariable --initialRun",
"publishPkg": "yarn build && npm version patch && npm publish"
},
"dependencies": {
"@ant-design/colors": "^6.0.0",
"fs-extra": "^10.0.0",
"postcss": "^8.3.5",
"postcss-less": "^4.0.1"
},
"devDependencies": {
"@spark-build/lint": "^0.0.16",
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.3.3",
"antd": "4.16.7",
"cross-env": "^7.0.3",
"fast-glob": "^3.2.7",
"less": "^4.1.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "4.3.5"
},
"peerDependencies": {
"antd": "^4.0.0"
}
}