-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) Β· 962 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) Β· 962 Bytes
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
{
"name": "@da1z/vibe-cli",
"version": "0.0.3",
"description": "A tiny Y2K CLI for AI-generated Conventional Commits.",
"module": "src/index.ts",
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"bin": {
"vibe": "./dist/vibe.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "bun run src/index.ts",
"start": "bun run src/index.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"build": "bun build ./src/index.ts --outfile ./dist/vibe.js --target node --minify && chmod +x ./dist/vibe.js"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.6.0",
"typescript": "^6.0.3"
},
"dependencies": {
"@ai-sdk/gateway": "^3.0.104",
"@clack/prompts": "^1.2.0",
"@da1z/prompt": "^0.0.2",
"ai": "^6.0.168",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"conf": "^15.1.0"
}
}