-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.9 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
{
"name": "opencode-plugin-compat",
"private": true,
"version": "0.1.0",
"description": "Universal OpenCode plugin compatibility (OCP) — facades, one autodetection adapter, host kit, and doctor for OpenCode forks",
"type": "module",
"license": "MPL-2.0",
"author": "oakimov",
"repository": {
"type": "git",
"url": "git+https://github.com/oakimov/opencode-plugin-compat.git"
},
"bugs": {
"url": "https://github.com/oakimov/opencode-plugin-compat/issues"
},
"homepage": "https://github.com/oakimov/opencode-plugin-compat#readme",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bunx tsc -b && bun run --cwd packages/adapter build:runtime",
"typecheck": "bunx tsc -b --pretty false",
"test": "bun test ./test",
"matrix": "bun packages/cli/bin/compat.ts matrix",
"doctor": "bun packages/cli/bin/compat.ts doctor",
"setup": "bun packages/ocp/bin/ocp.ts setup",
"migrate-zcode": "bun packages/cli/bin/compat.ts migrate-zcode",
"clean": "rm -rf packages/*/dist packages/*/tsconfig.tsbuildinfo",
"pack:check": "bun scripts/publish.ts",
"pack": "bun scripts/publish.ts --pack",
"publish:dry": "bun scripts/publish.ts",
"publish:npm": "bun scripts/publish.ts --publish",
"publish:ci": "bun scripts/publish.ts --publish --oidc --skip-tests",
"bump:version": "bun scripts/bump-version.ts"
},
"devDependencies": {
"@opencode-compat/adapter": "workspace:*",
"@opencode-compat/cli": "workspace:*",
"@opencode-compat/facade-plugin": "workspace:*",
"@opencode-compat/facade-sdk": "workspace:*",
"@opencode-compat/host-promise-v2": "workspace:*",
"@opencode-compat/migrate-zcode": "workspace:*",
"@opencode-compat/ocp": "workspace:*",
"@opencode-compat/profile": "workspace:*",
"@types/bun": "latest",
"typescript": "^5.8.3"
},
"packageManager": "bun@1.3.14",
"engines": {
"bun": ">=1.2.0"
}
}