-
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) · 825 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 825 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": "aibox-cli",
"version": "0.5.1",
"description": "Run AI coding agents in isolated Docker containers",
"author": "repalash <palash@shaders.app>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/blitzdotdev/aibox.git"
},
"homepage": "https://github.com/blitzdotdev/aibox",
"bugs": {
"url": "https://github.com/blitzdotdev/aibox/issues"
},
"keywords": [
"ai",
"docker",
"sandbox",
"claude",
"coding-agent",
"devtools",
"cli"
],
"bin": {
"aibox": "./bin/aibox"
},
"files": [
"bin/aibox",
"README.md",
"LICENSE"
],
"os": [
"darwin",
"linux"
],
"engines": {
"node": ">=18"
},
"scripts": {
"release": "git tag v$npm_package_version && git push origin v$npm_package_version"
}
}