-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.37 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.37 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
{
"name": "sandcode",
"version": "0.0.2",
"description": "Bun-powered research CLI for OpenCode, Daytona sandboxes, and repository analysis",
"private": false,
"type": "module",
"packageManager": "bun@1.3.10",
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"bin": {
"sandcode": "bin/sandcode.js"
},
"scripts": {
"start": "bun src/sandcode.ts start",
"analyze": "bun src/sandcode.ts analyze",
"setup": "bun src/sandcode.ts setup",
"build": "bun run scripts/build.ts",
"prepack": "bun run build",
"test": "bun test",
"typecheck": "bunx tsc --noEmit",
"lint": "biome lint .",
"format": "biome format . --write",
"check": "biome check ."
},
"keywords": [
"research",
"tui",
"bun",
"daytona",
"opencode",
"sandbox"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shpitdev/sandcode.git"
},
"bugs": {
"url": "https://github.com/shpitdev/sandcode/issues"
},
"homepage": "https://github.com/shpitdev/sandcode#readme",
"engines": {
"bun": ">=1.3.0"
},
"dependencies": {
"@daytonaio/sdk": "^0.143.0",
"@opentui/core": "0.1.86",
"@opentui/solid": "0.1.86",
"solid-js": "1.9.9"
},
"devDependencies": {
"@biomejs/biome": "^2.4.3",
"bun-types": "1.3.10",
"typescript": "^5.9.3"
}
}