-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 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
{
"name": "@shpitdev/opencode-sandboxed-ad-hoc-research",
"version": "0.0.1",
"description": "Run OpenCode in Daytona sandboxes for web sessions and ad hoc repository research",
"private": false,
"type": "module",
"packageManager": "bun@1.3.8",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"bin": {
"opencode-sandboxed-research-start": "./bin/start.js",
"opencode-sandboxed-research-analyze": "./bin/analyze.js",
"opencode-sandboxed-research-setup": "./bin/setup.js"
},
"scripts": {
"start": "bun run src/start-opencode-daytona.ts",
"analyze": "bun run src/analyze-repos.ts",
"setup": "bun run src/install.ts",
"build": "bunx tsc -p tsconfig.build.json",
"prepack": "bun run build",
"test": "bun test",
"typecheck": "bunx tsc --noEmit",
"lint": "biome lint .",
"format": "biome format . --write",
"check": "biome check ."
},
"keywords": [
"daytona",
"opencode",
"sandbox"
],
"author": "",
"license": "MIT",
"engines": {
"bun": ">=1.3.0"
},
"dependencies": {
"@daytonaio/sdk": "^0.143.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.3",
"typescript": "^5.9.3"
}
}