-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.22 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.22 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
{
"name": "opencode-web-docker",
"description": "OpenCode Web Docker",
"private": true,
"type": "module",
"packageManager": "bun@1.3.14",
"repository": {
"type": "git",
"url": "https://github.com/djchen/opencode-web-docker.git"
},
"homepage": "https://github.com/djchen/opencode-web-docker",
"bugs": {
"url": "https://github.com/djchen/opencode-web-docker/issues"
},
"scripts": {
"test": "bun test",
"docker:build": "docker build -t opencode-web-docker .",
"test:runtime-config": "bun scripts/test-runtime-config.ts",
"test:compat": "bun build/check-runtime-config-compat.ts",
"upstream:update": "bun scripts/update-opencode-release.ts",
"typecheck": "tsc --noEmit",
"build:runtime": "bun build/transpile-runtime.ts",
"build:prepare-static": "bun build/prepare-static-web.ts",
"lint": "biome lint build/ runtime/ tests/ scripts/ package.json tsconfig.json biome.json",
"format": "biome format --write build/ runtime/ tests/ scripts/ package.json tsconfig.json biome.json",
"format:check": "biome format build/ runtime/ tests/ scripts/ package.json tsconfig.json biome.json"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/bun": "1.3.14",
"@types/node": "25.9.0",
"typescript": "^6.0.3"
}
}