-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.52 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.52 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
{
"name": "@vibe-coder/cli",
"version": "1.0.8",
"description": "Vibe Coding development tool",
"private": false,
"packageManager": "bun@1.3.9",
"type": "module",
"author": "HelloGGX",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HelloGGX/vibe-coder-cli.git"
},
"bin": {
"vibe": "./bin/vibe"
},
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun run scripts/build.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build",
"publish:snapshot": "bun publish --tag snapshot",
"prepare": "husky"
},
"keywords": [
"cli",
"agent-skills",
"skills",
"vibe-coding"
],
"dependencies": {
"@clack/prompts": "^1.0.1",
"gray-matter": "4.0.3",
"jsonc-parser": "3.3.1",
"picocolors": "^1.1.1",
"simple-git": "^3.32.2"
},
"devDependencies": {
"@tsconfig/bun": "^1.0.10",
"@types/bun": "1.3.9",
"@types/node": "25.3.3",
"@vitest/ui": "4.0.18",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"semver": "^7.7.4",
"turbo": "^2.8.13",
"typescript": "5.8.2",
"vitest": "4.0.18"
},
"engines": {
"node": ">=18.0.0"
},
"bugs": {
"url": "https://github.com/HelloGGX/vibe-coder-cli/issues"
},
"prettier": {
"semi": false,
"printWidth": 120
},
"homepage": "https://github.com/HelloGGX/vibe-coder-cli#readme"
}