-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.88 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
{
"name": "@egdev6/compilot-cli",
"version": "1.0.9",
"license": "MIT",
"bin": {
"compilot-cli": "./build/index.js"
},
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc && tsc-alias && cp -r source/plop-files/templates dist/plop-files/ && ncc build dist/cli.js -o build && cp -r dist/plop-files build/plop-files && chmod +x ./build/index.js",
"dev": "tsc --watch",
"clean": "rm -rf dist node_modules package-lock.json && npm cache clean --force",
"reinstall": "npm run clean && npm install",
"biome-all": "biome check --write .",
"biome-staged": "biome check . --write --staged --verbose",
"pre-commit": "npm run biome-staged && git add -A"
},
"files": ["build"],
"dependencies": {
"cli-tree": "0.0.1",
"ink": "5.2.0",
"ink-divider": "4.1.1",
"ink-multi-select": "2.0.0",
"ink-select-input": "6.1.0",
"ink-spinner": "5.0.0",
"ink-text-input": "6.0.0",
"module-alias": "2.2.3",
"nanoid": "5.1.5",
"node-plop": "0.32.0",
"open": "10.1.1",
"plop": "4.0.1",
"react": "18.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@sindresorhus/tsconfig": "7.0.0",
"@types/react": "19.1.2",
"@vercel/ncc": "0.38.3",
"ava": "6.2.0",
"chalk": "5.4.1",
"lefthook": "1.11.11",
"ts-node": "10.9.2",
"tsc-alias": "1.8.15",
"typescript": "5.8.3",
"xo": "0.60.0"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": ["--loader=ts-node/esm"]
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
}
},
"repository": {
"type": "git",
"url": "https://github.com/egdev6/compilot-cli.git"
},
"bugs": {
"url": "https://github.com/egdev6/compilot-cli/issues"
},
"homepage": "https://github.com/egdev6/compilot-cli#readme"
}