-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.63 KB
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
{
"name": "@lcui/cli",
"version": "1.3.0",
"type": "module",
"description": "Command line interface for rapid LCUI development",
"main": "index.js",
"bin": {
"lcui": "bin/lcui.js"
},
"files": [
"lib",
"bin",
"README.md",
"README.zh-cn.md",
"CHANGELOG.md"
],
"types": "./lib/types.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --recursive --extension test.js test"
},
"author": "Liu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lcui-dev/lcui-toolkit.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/lcui-dev/lcui-toolkit/issues"
},
"homepage": "https://github.com/lcui-dev/lcui-toolkit/tree/develop/packages/cli#readme",
"dependencies": {
"@lcui/react": "*",
"chalk": "^5.6.2",
"change-case": "^4.1.2",
"change-case-all": "^2.1.0",
"commander": "^15.0.0",
"fs-extra": "^11.3.5",
"os-locale": "^8.0.0",
"postcss": "^8.5.15",
"postcss-load-config": "^4.0.2",
"postcss-modules": "^6.0.0",
"postcss-sass": "^0.5.0",
"postcss-url": "^10.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.100.0",
"simple-git": "^3.25.0",
"typescript": "^5.9.3",
"winston": "^3.19.0",
"xml-js": "^1.6.11",
"yaml": "^2.9.0"
},
"devDependencies": {
"@thedutchcoder/postcss-rem-to-px": "^0.0.2",
"@types/fs-extra": "^11.0.4",
"@types/postcss-url": "^10.0.4",
"mocha": "^11.3.0",
"tailwindcss": "3.4.17"
},
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": [
"lcui",
"cli",
"compiler"
]
}