-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.06 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
{
"name": "liaison-toolkit",
"version": "0.1.0",
"description": "AI-driven liaison system connecting agent builders with issue trackers",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:security": "bun audit || true",
"lint": "turbo run lint",
"format": "turbo run format --",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"changeset:add": "./scripts/create-changeset.sh",
"version-packages": "changeset version",
"release": "turbo run build --filter=!@pwarnock/docs && changeset publish",
"publish": "changeset publish",
"daemon:start": "pm2 start ecosystem.config.cjs",
"daemon:stop": "pm2 stop beads-daemon",
"daemon:restart": "pm2 restart beads-daemon",
"daemon:status": "pm2 status beads-daemon",
"daemon:logs": "pm2 logs beads-daemon",
"daemon:monitor": "pm2 monit",
"daemon:health": "bd daemons health",
"daemon:cleanup": "pm2 delete beads-daemon && bd daemons killall"
},
"devDependencies": {
"@beads/bd": "^0.47.1",
"@changesets/cli": "^2.29.8",
"@cucumber/cucumber": "^12.5.0",
"@stryker-mutator/core": "^9.4.0",
"oxlint": "^1.39.0",
"turbo": "^2.7.4",
"typescript": "^5.9.3"
},
"optionalDependencies": {},
"engines": {
"node": ">=24.11.1",
"bun": ">=1.3.5"
},
"packageManager": "bun@1.3.5",
"workspaces": [
"packages/*",
"config/*"
],
"repository": {
"type": "git",
"url": "https://github.com/pwarnock/liaison-toolkit.git"
},
"keywords": [
"ai",
"automation",
"workflow",
"agents",
"liaison",
"development"
],
"author": "Liaison Toolkit Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/pwarnock/liaison-toolkit/issues"
},
"homepage": "https://github.com/pwarnock/liaison-toolkit#readme",
"bin": {
"eslint": "./scripts/eslint-proxy.ts"
},
"overrides": {
"esbuild": "^0.26.0"
},
"trustedDependencies": [
"@beads/bd",
"esbuild"
]
}