-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.31 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "opencode-goal-plugin",
"version": "0.8.1",
"description": "Durable, guarded goal workflows for OpenCode.",
"type": "module",
"main": "./src/goal-plugin.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./src/goal-plugin.js",
"default": "./src/goal-plugin.js"
},
"./server": {
"types": "./index.d.ts",
"import": "./src/goal-plugin.js",
"default": "./src/goal-plugin.js"
}
},
"bin": {
"opencode-goal-plugin": "./scripts/verify.mjs"
},
"files": [
"src",
"scripts/verify.mjs",
"examples",
"demo",
"docs",
"index.d.ts",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
"LICENSE",
".nvmrc"
],
"scripts": {
"test": "node --test test/*.test.js",
"test:model": "node --test test/lifecycle-model.test.js",
"test:mutation": "node scripts/mutation-contract.mjs",
"test:coverage": "node --test --experimental-test-coverage test/*.test.js",
"type:check": "node scripts/type-contract.mjs",
"smoke": "node scripts/smoke-command-hook.mjs",
"smoke:packed-host": "node scripts/packed-host-contract.mjs",
"smoke:packed-tools": "node scripts/packed-tool-contract.mjs",
"benchmark:behavior": "node scripts/behavior-benchmark.mjs",
"verify": "node scripts/verify.mjs",
"check": "node -c src/goal-plugin.js && npm test",
"pack:check": "npm pack --dry-run",
"release:check": "npm run check && npm run test:coverage && npm run type:check && npm run test:mutation && npm run benchmark:behavior && npm run smoke && npm run smoke:packed-host && npm run smoke:packed-tools && npm run verify && npm audit --omit=dev --audit-level=high && npm run pack:check"
},
"keywords": [
"opencode",
"opencode-plugin",
"agent",
"goal"
],
"license": "MIT",
"engines": {
"node": ">=18",
"opencode": ">=1.17.15 <2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willytop8/OpenCode-goal-plugin.git"
},
"bugs": {
"url": "https://github.com/willytop8/OpenCode-goal-plugin/issues"
},
"homepage": "https://github.com/willytop8/OpenCode-goal-plugin#readme",
"author": {
"name": "willytop8"
},
"devDependencies": {
"typescript": "7.0.2"
},
"dependencies": {
"zod": "4.4.3"
}
}