-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.52 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "bashkit",
"version": "0.7.0",
"description": "Agentic coding tools for the Vercel AI SDK",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"bashkit": "./dist/cli/init.js"
},
"files": [
"dist",
"README.md",
"AGENTS.md"
],
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun run build:js && bun run build:cli && bun run build:types",
"build:js": "bun build src/index.ts --outdir dist --target node --format esm --external ai --external zod --external @ai-sdk/* --external @vercel/sandbox --external @e2b/code-interpreter --external parallel-web --external @vscode/ripgrep",
"build:cli": "bun build src/cli/init.ts --outdir dist/cli --target node --format esm --external @clack/prompts && chmod +x dist/cli/init.js",
"build:types": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint --write .",
"lint:check": "biome lint .",
"check": "biome check --write .",
"check:ci": "biome check .",
"link-agents": "bash scripts/link-agents-md.sh",
"check:agents": "bash scripts/check-agents-md.sh",
"prepublishOnly": "bun run build"
},
"keywords": [
"ai",
"agent",
"vercel",
"ai-sdk",
"sandbox",
"tools",
"bash",
"code-execution"
],
"author": "jbreite",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jbreite/bashkit"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@vscode/ripgrep": "^1.17.0"
},
"devDependencies": {
"@ai-sdk/anthropic": "^3.0.1",
"@biomejs/biome": "^2.3.9",
"@e2b/code-interpreter": "^1.5.1",
"@types/bun": "latest",
"@types/node": "^24.10.0",
"@vercel/sandbox": "^1.0.4",
"@vitest/coverage-v8": "^3.0.0",
"ai": "^6.0.0",
"parallel-web": "^0.2.4",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
},
"peerDependencies": {
"ai": ">=5.0.0",
"zod": "^4.1.8",
"@vercel/sandbox": "^1.0.0",
"@e2b/code-interpreter": "^1.0.0",
"parallel-web": "^0.2.4"
},
"peerDependenciesMeta": {
"@vercel/sandbox": {
"optional": true
},
"@e2b/code-interpreter": {
"optional": true
},
"parallel-web": {
"optional": true
}
}
}