-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.15 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@spoons-and-mirrors/subtask2",
"version": "0.3.5",
"type": "module",
"description": "Opencode plugin for enhanced subtask control with return context and prompt chaining",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"opencode",
"opencode-plugin",
"plugin",
"subtask",
"chaining",
"automation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/spoons-and-mirrors/subtask2.git"
},
"author": "spoons-and-mirrors",
"license": "PolyForm-Noncommercial-1.0.0",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.0.216"
},
"dependencies": {
"@opencode-ai/sdk": "latest",
"yaml": "^2.8.2"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.0.217",
"@types/node": "^25.0.3",
"bun-types": "^1.3.5",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}