forked from mattpocock/sandcastle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.84 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.84 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
94
95
96
97
98
99
100
101
102
103
{
"name": "@ai-hero/sandcastle",
"version": "0.5.6",
"description": "CLI for orchestrating AI agents in isolated sandbox environments",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./sandboxes/docker": {
"import": "./dist/sandboxes/docker.js",
"types": "./dist/sandboxes/docker.d.ts"
},
"./sandboxes/vercel": {
"import": "./dist/sandboxes/vercel.js",
"types": "./dist/sandboxes/vercel.d.ts"
},
"./sandboxes/podman": {
"import": "./dist/sandboxes/podman.js",
"types": "./dist/sandboxes/podman.d.ts"
},
"./sandboxes/daytona": {
"import": "./dist/sandboxes/daytona.js",
"types": "./dist/sandboxes/daytona.d.ts"
},
"./sandboxes/no-sandbox": {
"import": "./dist/sandboxes/no-sandbox.js",
"types": "./dist/sandboxes/no-sandbox.d.ts"
}
},
"bin": {
"sandcastle": "dist/main.js"
},
"scripts": {
"build": "tsgo --project tsconfig.build.json",
"postbuild": "rm -rf dist/templates && cp -r src/templates dist/templates",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsgo --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"release": "changeset publish",
"sandcastle": "npm run build && tsx .sandcastle/run.ts",
"test-podman": "npm run build && tsx --env-file=.sandcastle/.env .sandcastle/test-podman.ts",
"test-vercel": "npm run build && tsx --env-file=.sandcastle/.env .sandcastle/test-vercel.ts",
"test-interactive": "npm run build && tsx --env-file=.sandcastle/.env .sandcastle/test-interactive.ts"
},
"keywords": [
"cli",
"sandbox",
"docker",
"ai",
"agent"
],
"packageManager": "npm@10.9.2",
"repository": {
"type": "git",
"url": "https://github.com/mattpocock/sandcastle"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@effect/vitest": "^0.28.0",
"@types/node": "^25.5.0",
"@typescript/native-preview": "^7.0.0-dev.20260317.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"tsx": "^4.21.0",
"vitest": "^3.2.0"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"@effect/cli": "^0.74.0",
"@effect/platform": "^0.95.0",
"@effect/platform-node": "^0.105.0",
"@effect/printer": "^0.48.0",
"@effect/printer-ansi": "^0.48.0",
"effect": "^3.20.0"
},
"peerDependencies": {
"@vercel/sandbox": ">=1.0.0",
"@daytona/sdk": "^0.164.0"
},
"peerDependenciesMeta": {
"@vercel/sandbox": {
"optional": true
},
"@daytona/sdk": {
"optional": true
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": "prettier --write"
},
"files": [
"dist"
]
}