-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"name": "@crafter/v0-cli",
"version": "0.1.2",
"description": "Agent-first CLI for the v0 Platform API (api.v0.dev/v1). Built for AI agents with a human supervisor: trust ladder, audit trail, killswitch, rate-limit aware.",
"license": "MIT",
"author": "Railly Hugo <railly@crafterstation.com>",
"repository": {
"type": "git",
"url": "https://github.com/Railly/v0-cli.git"
},
"type": "module",
"main": "./dist/index.js",
"bin": {
"v0": "./dist/index.js"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --target=bun --outdir=dist",
"build:binary": "bun build --compile src/index.ts --outfile=dist/v0",
"lint": "biome check .",
"format": "biome format --write .",
"test": "bun test",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"commander": "^14.0.0",
"picocolors": "^1.1.1",
"smol-toml": "^1.4.3",
"v0-sdk": "^0.16.4"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/bun": "latest",
"typescript": "^5.6.0"
},
"files": [
"dist/",
"skill/",
"README.md",
"LICENSE"
],
"engines": {
"bun": ">=1.3.0"
}
}