-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.99 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
{
"name": "opencode2-automation",
"version": "0.6.7",
"description": "Issue-to-PR automation for OpenCode 2 with a scheduler and GitHub dispatcher",
"main": "./dist/index.js",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"img",
"docs",
"prompts",
"scripts/postinstall.mjs"
],
"bin": {
"opencode2-automation": "./dist/setup.js"
},
"type": "module",
"engines": {
"node": ">=22"
},
"exports": {
".": "./dist/index.js",
"./tui": "./dist/tui.js",
"./scheduler": "./dist/plugins/scheduler.js",
"./github": "./dist/plugins/github.js",
"./rpc": "./dist/rpc.js"
},
"scripts": {
"postinstall": "node scripts/postinstall.mjs",
"prepack": "npm run build",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.test.json",
"lint": "eslint src test scripts eslint.config.mjs --max-warnings 0",
"test": "node --import tsx --test test/*.test.ts test/*.test.mjs",
"check": "npm run lint && npm run typecheck && npm test && npm run test:tui && npm run build",
"package:check": "node scripts/package-check.mjs",
"install-local": "bash scripts/install-local.sh",
"test:tui": "bun --conditions=browser test/fixtures/sidebar-render.ts"
},
"dependencies": {
"@opencode/client": "2.0.6",
"@opencode/plugin": "2.0.6",
"proper-lockfile": "^4.1.2",
"zod": "^4.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@opencode/theme": "2.0.6",
"@opencode/theme-current": "npm:@opencode/theme@2.0.10",
"@opentui/core": "0.5.10",
"@opentui/solid": "0.5.10",
"@types/node": "^22.0.0",
"@types/proper-lockfile": "^4.1.4",
"bun": "1.4.2",
"eslint": "^10.10.0",
"globals": "^17.12.0",
"semver": "^7.8.5",
"solid-js": "1.9.12",
"tsx": "^4.20.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.70.0"
},
"private": true,
"peerDependencies": {
"@opentui/core": ">=0.5.10",
"@opentui/solid": ">=0.5.10",
"solid-js": ">=1.9.12"
}
}