-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "coreinfra-opencode-plugin",
"version": "1.0.0",
"type": "module",
"main": "./index.ts",
"module": "./index.ts",
"files": [
"index.ts",
"src",
"models.json",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./index.ts",
"types": "./index.ts"
},
"./server": {
"import": "./index.ts",
"types": "./index.ts"
}
},
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "biome lint . --error-on-warnings",
"format": "biome format --write .",
"format:check": "biome format . --diagnostic-level=error",
"test": "vitest run",
"check": "bun run typecheck && bun run lint && bun run test && bun run format:check"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.4.0",
"@opencode-ai/sdk": ">=1.4.0"
},
"devDependencies": {
"@opencode-ai/plugin": "1.4.0",
"@opencode-ai/sdk": "1.4.0",
"@types/node": "^24.9.0",
"@biomejs/biome": "^2.4.11",
"vitest": "^4.1.4",
"typescript": "^5.8.0"
}
}