-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.97 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
{
"name": "@codio-ai/opencode-authoring-agent",
"version": "0.1.7",
"description": "Opencode plugin for authoring Codio guide assignments — orchestrator, subagents, tools, and skills.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": ["dist", "src/skills", "bin", "README.md", "LICENSE"],
"bin": {
"codio-authoring-register": "./bin/codio-authoring-register.js",
"codio-authoring-unregister": "./bin/codio-authoring-unregister.js"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node --format esm --external @opencode-ai/plugin --external @opencode-ai/sdk --external zod && tsc --emitDeclarationOnly",
"postinstall": "node ./bin/codio-authoring-register.js || true",
"preuninstall": "node ./bin/codio-authoring-unregister.js || true",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format . --write",
"check": "biome check --write .",
"check:ci": "biome check ."
},
"keywords": ["opencode", "opencode-plugin", "codio", "assignment-authoring", "education"],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codio-extensions/codio-authoring-opencode-plugin.git"
},
"homepage": "https://github.com/codio-extensions/codio-authoring-opencode-plugin#readme",
"bugs": "https://github.com/codio-extensions/codio-authoring-opencode-plugin/issues",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@opencode-ai/plugin": "^1.14.48",
"@opencode-ai/sdk": "^1.14.48"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@types/node": "^24.6.1",
"bun-types": "1.3.12",
"codio-api-js": "^0.18.0",
"json-2-csv": "^5.5.10",
"typescript": "^5.9.3",
"zod": "~4.1.0"
},
"peerDependencies": {
"zod": "~4.1.0"
}
}