-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.63 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
62
63
{
"name": "opencode-goal-mode",
"version": "0.9.7",
"description": "OpenCode Goal Mode 0.9 — goal agent + server plugin: goal_set, idle evaluator, auto-continue until YES. Simple, no sidebar, no guard.",
"type": "module",
"exports": {
"./package.json": "./package.json"
},
"engines": {
"node": ">=20.11"
},
"packageManager": "npm@11.13.0",
"bin": {
"opencode-goal-mode": "scripts/install.mjs",
"opencode-goal-mode-install": "scripts/install.mjs"
},
"files": [
"agents/",
"plugins/",
"scripts/install.mjs",
"scripts/postinstall.mjs",
"ARCHITECTURE.md",
"CHANGELOG.md",
"CUSTOMIZE.md",
"GOAL.md",
"LICENSE",
"README.md"
],
"scripts": {
"test": "node --test",
"lint": "biome lint plugins/ scripts/ tests/",
"lint:fix": "biome lint --write plugins/ scripts/ tests/",
"install:local": "node scripts/install.mjs",
"install:global": "node scripts/install.mjs --global",
"postinstall": "node scripts/postinstall.mjs"
},
"keywords": [
"opencode",
"opencode-plugin",
"goal-mode",
"ai-agents"
],
"repository": {
"type": "git",
"url": "git+https://github.com/devinoldenburg/opencode-goal-mode.git"
},
"bugs": {
"url": "https://github.com/devinoldenburg/opencode-goal-mode/issues"
},
"homepage": "https://github.com/devinoldenburg/opencode-goal-mode#readme",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@opencode-ai/plugin": "^1.17.9",
"@opencode-ai/sdk": "1.17.15"
},
"devDependencies": {
"@biomejs/biome": "2.5.2"
}
}