-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 834 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 834 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
{
"name": "linear-coding-agent",
"version": "0.1.0",
"private": true,
"description": "Linear-driven OrbCode coding agent. Receives Linear tickets, runs orbcode in a worktree, asks questions back through Linear, opens a PR.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@hono/node-server": "1.13.7",
"hono": "4.6.14",
"nanoid": "5.0.9",
"undici": "6.21.0",
"zod": "3.24.1"
},
"devDependencies": {
"@types/node": "20.17.10",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vitest": "2.1.8"
}
}