This repository was archived by the owner on Feb 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.5 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.5 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@frugally3683/agent-loop-plugin",
"version": "6.0.0",
"description": "Minimal Task Continuation Plugin - Automatically continues sessions when incomplete tasks remain",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./plugin": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js"
},
"./src": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc && npm run bundle",
"bundle": "esbuild src/plugin.ts --bundle --format=esm --outfile=dist/plugin.bundled.js --platform=node --target=node18",
"watch": "tsc --watch && npm run watch:bundle",
"watch:bundle": "esbuild src/plugin.ts --bundle --format=esm --outfile=dist/plugin.bundled.js --platform=node --target=node18 --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"version:check": "npm version --dry-run",
"version:patch": "npm version patch --message 'chore: Bump patch version' && git push && git push --tags",
"version:minor": "npm version minor --message 'feat: Bump minor version' && git push && git push --tags",
"version:major": "npm version major --message 'BREAKING CHANGE: Major version bump' && git push && git push --tags",
"release:patch": "npm run test && npm run lint:fix && npm run build && npm run version:patch",
"release:minor": "npm run test && npm run lint:fix && npm run build && npm run version:minor",
"release:major": "npm run test && npm run lint:fix && npm run build && npm run version:major",
"release": "npm run test && npm run lint:fix && npm run build && git add -A && git commit -m 'chore: Release preparation' && git push"
},
"keywords": [
"opencode",
"opencode-plugin",
"agent",
"loop",
"plugin",
"automation",
"task-management",
"continuation"
],
"author": "OpenCode Community",
"license": "MIT",
"devDependencies": {
"@opencode-ai/plugin": "file:/Users/wese/SyncSettings/Stow/opencode/dot-config/opencode/node_modules/@opencode-ai/plugin",
"@types/node": "^20.19.27",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitest/coverage-v8": "^4.0.16",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"tsup": "^8.5.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.51.0",
"vitest": "^4.0.16"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rwese/agent-loop-plugin.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"opencode": {
"name": "agent-loop-plugin",
"version": "4.1.0",
"description": "Task Continuation Plugin - Automatically continues sessions when incomplete tasks remain",
"author": "OpenCode Community",
"license": "MIT",
"repository": "https://github.com/rwese/agent-loop-plugin",
"bugs": "https://github.com/rwese/agent-loop-plugin/issues",
"homepage": "https://github.com/rwese/agent-loop-plugin"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/rwese"
}
}