-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.6 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
{
"name": "opencode2-automation",
"version": "0.6.3",
"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 build",
"package:check": "node scripts/package-check.mjs",
"install-local": "bash scripts/install-local.sh"
},
"dependencies": {
"@opencode/client": "0.0.0-beta-19398",
"@opencode/plugin": "0.0.0-beta-19398",
"proper-lockfile": "^4.1.2",
"zod": "^4.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.0.0",
"@types/proper-lockfile": "^4.1.4",
"eslint": "^10.10.0",
"globals": "^17.12.0",
"semver": "^7.8.5",
"tsx": "^4.20.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.70.0"
},
"private": true
}