-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.76 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.76 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
72
73
{
"name": "@laser-ui/cli",
"version": "0.1.0",
"description": "Cli for Laser Admin.",
"keywords": [
"laser-ui",
"admin",
"laser-admin",
"laser-cli",
"cli"
],
"homepage": "https://github.com/laser-ui/laser-cli",
"bugs": {
"url": "https://github.com/laser-ui/laser-cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/laser-ui/laser-cli.git"
},
"license": "MIT",
"author": "Xie Jay <xiejay97@gmail.com>",
"bin": {
"laser-cli": "./main.js"
},
"scripts": {
"test:create": "node dist/laser-cli/main.js create",
"test:route": "node dist/laser-cli/main.js route",
"build": "nx build",
"test": "nx test"
},
"dependencies": {
"axios": "^1.6.0",
"camelcase": "^8.0.0",
"change-case": "^5.4.4",
"colors": "^1.4.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"inquirer": "^12.0.0",
"pascalcase": "^2.0.0",
"typescript": "~5.5.2"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@nx/esbuild": "20.0.3",
"@nx/eslint": "20.0.3",
"@nx/eslint-plugin": "20.0.3",
"@nx/jest": "20.0.3",
"@nx/js": "20.0.3",
"@nx/node": "20.0.3",
"@nx/workspace": "20.0.3",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "~18.16.9",
"esbuild": "^0.19.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"nx": "20.0.3",
"prettier": "^3.3.3",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript-eslint": "^8.0.0"
},
"nx": {
"includedScripts": []
}
}