-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
59 lines (59 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "layui-theme-dark",
"version": "2.9.16",
"description": "layui 深色主题",
"type": "module",
"scripts": {
"dev": "run-p server watch",
"server": "http-server ./ -p 5503",
"watch": "gulp watch",
"build": "gulp build",
"genCssVar": "node ./script/gen-css-var.js",
"genJson": "node ./script/gen-json.js",
"public": "npm publish --access public",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
},
"./*": "./*",
"./src/*": "./src/*",
"./dist/*": "./dist/*"
},
"main": "index.js",
"module": "index.mjs",
"files": [
"dist",
"src",
"index.js",
"index.mjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Sight-wcg/layui-theme-dark.git"
},
"author": "morning-star",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sight-wcg/layui-theme-dark/issues"
},
"homepage": "https://github.com/Sight-wcg/layui-theme-dark#readme",
"devDependencies": {
"@arco-design/color": "^0.4.0",
"@types/jquery": "^3.5.16",
"cssgrace": "^3.0.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.4",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-css-variables": "^0.18.0",
"postcss-nested": "^6.0.1"
}
}