-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "sandy",
"version": "0.2.0",
"description": "Sandboxed development environment for AI agents",
"type": "module",
"bin": {
"sandy": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run",
"release:local": "pnpm build && bash scripts/release-with-otp.sh && git push --follow-tags",
"prepublishOnly": "pnpm build"
},
"keywords": [
"sandbox",
"docker",
"ai",
"claude",
"development"
],
"author": "cameronolivier@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/olvrcc/sandy.git"
},
"bugs": {
"url": "https://github.com/olvrcc/sandy/issues"
},
"homepage": "https://github.com/olvrcc/sandy#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dockerode": "^4.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.3",
"@types/dockerode": "^3.3.0",
"@types/node": "^22.0.0",
"semantic-release": "^25.0.3",
"tsx": "^4.0.0",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
},
"packageManager": "pnpm@10.18.1"
}