forked from nclamvn/vibecode-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 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
{
"name": "@nclamvn/vibecode-cli",
"version": "3.0.0",
"description": "Build software with discipline - AI coding with guardrails",
"main": "src/index.js",
"type": "module",
"bin": {
"vibecode": "./bin/vibecode.js"
},
"scripts": {
"start": "node bin/vibecode.js",
"lint": "eslint src/",
"test": "node src/ui/__tests__/error-translator.test.js",
"test:errors": "node src/ui/__tests__/error-translator.test.js",
"test:errors:verbose": "node src/ui/__tests__/error-translator.test.js --verbose"
},
"keywords": [
"cli",
"ai",
"coding",
"claude",
"vibecode",
"development",
"workflow"
],
"author": "Lâm",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"chokidar": "^5.0.0",
"commander": "^12.0.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.12",
"open": "^11.0.0",
"ora": "^8.0.1",
"qrcode": "^1.5.4",
"yaml": "^2.3.4"
},
"devDependencies": {
"eslint": "^8.56.0"
},
"repository": {
"type": "git",
"url": "https://github.com/user/vibecode-cli"
}
}