-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.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
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
{
"name": "opencode-plugin-loop",
"version": "0.2.9",
"description": "/loop command for opencode — run prompts on a schedule (fixed, adaptive, or maintenance), modeled after Claude Code's /loop",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./server": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./tui": {
"types": "./dist/tui.d.ts",
"import": "./dist/tui.js"
},
"./commands/loop.md": "./commands/loop.md",
"./commands/*": "./commands/*"
},
"files": [
"dist",
"commands",
"README.md",
"LICENSE"
],
"keywords": [
"opencode",
"opencode-plugin",
"claude-code",
"loop",
"scheduled-tasks",
"cron",
"ai-coding-agent"
],
"license": "MIT",
"author": {
"name": "opencode-plugin-loop authors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkrandom-sudo/opencode-plugin-loop.git"
},
"bugs": {
"url": "https://github.com/jkrandom-sudo/opencode-plugin-loop/issues"
},
"homepage": "https://github.com/jkrandom-sudo/opencode-plugin-loop#readme",
"engines": {
"node": ">=18",
"opencode": ">=1.17.18"
},
"scripts": {
"build": "node scripts/build.mjs",
"prepare": "npm run build",
"test": "npm run build && node --test tests/*.test.mjs",
"dry-run": "npm publish --dry-run",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.17.18",
"@opentui/core": ">=0.4.3",
"@opentui/solid": ">=0.4.3",
"solid-js": "1.9.12"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@opencode-ai/plugin": "^1.17.18",
"@opentui/core": "0.4.3",
"@opentui/solid": "0.4.3",
"@types/node": "^22.0.0",
"babel-preset-solid": "^1.9.12",
"solid-js": "1.9.12",
"typescript": "^5.4.0"
},
"opencode": {
"plugin": true,
"commands": [
"commands/loop.md"
]
},
"dependencies": {
"clipboardy": "4.0.0"
}
}