-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.15 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.15 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
{
"name": "bash-tool",
"publishConfig": {
"access": "public"
},
"version": "1.3.16",
"description": "Generic bash tool for AI agents, compatible with AI SDK",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.build.json && sed '1,/^-->/d' AGENTS.npm.md > dist/AGENTS.md",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.examples.json",
"test": "vitest --exclude 'src/tool.vercel.integration.test.ts'",
"test:run": "vitest run --exclude 'src/tool.vercel.integration.test.ts'",
"test:vercel": "vitest run src/tool.vercel.integration.test.ts --sequence.concurrent",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"knip": "knip",
"validate": "pnpm run lint && pnpm run knip && pnpm run typecheck && pnpm run build && pnpm run test:run",
"prepublishOnly": "pnpm run validate && pnpm run build"
},
"keywords": [
"bash",
"ai",
"tool",
"agent",
"ai-sdk",
"sandbox",
"vercel"
],
"author": "Vercel, Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel-labs/bash-tool.git"
},
"bugs": {
"url": "https://github.com/vercel-labs/bash-tool/issues"
},
"homepage": "https://github.com/vercel-labs/bash-tool#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"fast-glob": "^3.3.2",
"just-bash": "^2.14.0",
"yaml": "^2.8.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/node": "^22.10.0",
"@vercel/sandbox": "^1.2.0",
"ai": "^6.0.13",
"knip": "^5.80.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"peerDependencies": {
"@vercel/sandbox": "*",
"ai": "^6.0.0",
"just-bash": "^2.9.3"
},
"peerDependenciesMeta": {
"just-bash": {
"optional": true
},
"@vercel/sandbox": {
"optional": true
}
}
}