-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.71 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
{
"name": "ework-daemon",
"version": "0.4.28",
"description": "Issue-driven AI development daemon. Spawns opencode subprocesses to resolve Gitea issues.",
"module": "src/index.ts",
"type": "module",
"license": "MIT",
"author": "dog and contributors",
"repository": {
"type": "git",
"url": "https://github.com/ranxianglei/ework-daemon.git"
},
"homepage": "https://github.com/ranxianglei/ework-daemon",
"bugs": {
"url": "https://github.com/ranxianglei/ework-daemon/issues"
},
"keywords": [
"issue-driven",
"ai-agent",
"opencode",
"gitea",
"automation",
"daemon",
"bridge"
],
"bin": {
"ework-daemon": "./src/cli.ts",
"ework-daemon-server": "./bin/ework-daemon-server.js"
},
"files": [
"src",
"bin",
"scripts/ework-daemon.service",
"README.md",
"LICENSE"
],
"engines": {
"bun": ">=1.1.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"setup": "bun run scripts/setup.ts",
"start": "bun --env-file=.env.test run src/index.ts",
"start:prod": "bun --env-file=.env run src/index.ts",
"dev": "bun --env-file=.env.test --watch src/index.ts",
"dev:prod": "bun --env-file=.env --watch src/index.ts",
"check": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:gitea": "bun run scripts/test-gitea.ts",
"test:mysql": "bash scripts/test-mysql.sh",
"build": "bun build src/cli.ts --compile --outfile ework-daemon",
"install-global": "bun run build && cp ework-daemon ~/.local/bin/"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"mysql2": "^3.23.1",
"zod": "^4.4.3"
}
}