-
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.45 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.45 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": "@opencode-compat/cli",
"version": "0.3.1",
"description": "OCP compat doctor, Plugin×Host×Tier matrix runner, Layer A setup/overrides, and migrate-zcode companion CLI",
"type": "module",
"license": "MPL-2.0",
"author": "oakimov",
"repository": {
"type": "git",
"url": "git+https://github.com/oakimov/opencode-plugin-compat.git",
"directory": "packages/cli"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"opencode-compat": "./bin/compat.ts",
"compat": "./bin/compat.ts"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"bin",
"dist",
"LICENSE",
"README.md",
"!dist/**/*.map"
],
"scripts": {
"build": "bunx tsc -p tsconfig.json",
"typecheck": "bunx tsc -p tsconfig.json --noEmit",
"prepack": "bunx tsc -p tsconfig.json"
},
"dependencies": {
"@opencode-compat/profile": "workspace:*",
"@opencode-compat/adapter": "workspace:*",
"@opencode-compat/migrate-zcode": "workspace:*"
},
"devDependencies": {
"typescript": "^5.8.3"
},
"bugs": {
"url": "https://github.com/oakimov/opencode-plugin-compat/issues"
},
"homepage": "https://github.com/oakimov/opencode-plugin-compat/tree/main/packages/cli#readme",
"keywords": [
"opencode",
"ocp",
"cli",
"doctor"
],
"engines": {
"bun": ">=1.2.0"
}
}