-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.05 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
{
"name": "opencode-guided-learning",
"version": "0.1.0",
"description": "A lightweight OpenCode plugin for human-approved learning through native skills",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Neverdecel/opencode-guided-learning.git"
},
"homepage": "https://github.com/Neverdecel/opencode-guided-learning#readme",
"bugs": { "url": "https://github.com/Neverdecel/opencode-guided-learning/issues" },
"keywords": ["opencode", "opencode-plugin", "skills", "guided-learning"],
"type": "module",
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./server": "./src/index.ts"
},
"files": ["src/index.ts", "skills"],
"publishConfig": { "access": "public" },
"scripts": {
"check": "tsc --noEmit",
"test": "node --test test/*.test.ts",
"prepublishOnly": "npm run check && npm test"
},
"engines": { "node": ">=24", "opencode": ">=1.18.30" },
"devDependencies": {
"@opencode-ai/plugin": "1.18.30",
"@types/node": "^26.5.0",
"typescript": "7.0.2"
}
}