-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 992 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 992 Bytes
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
{
"name": "ocloop",
"version": "0.2.0",
"type": "module",
"description": "A loop harness for opencode to execute tasks from PLAN.md",
"author": "d3vr",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/d3vr/ocloop.git"
},
"bugs": {
"url": "https://github.com/d3vr/ocloop/issues"
},
"homepage": "https://github.com/d3vr/ocloop#readme",
"keywords": [
"opencode",
"cli",
"tui",
"automation",
"loop",
"task-runner"
],
"bin": {
"ocloop": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "bun run src/index.tsx",
"build": "bun run build.ts",
"prepublishOnly": "bun run build",
"test": "bun test"
},
"dependencies": {
"@opencode-ai/sdk": "latest",
"@opentui/core": "latest",
"@opentui/solid": "latest",
"fuzzysort": "^3.1.0",
"solid-js": "^1.8.0"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
}
}