-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 967 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 967 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
33
{
"name": "relay",
"version": "0.0.1",
"description": "AI-era cross-project task hub: tasks as executable agent jobs.",
"type": "module",
"bin": {
"relay": "./src/cli.ts"
},
"scripts": {
"build": "bun build src/cli.ts --outdir dist --target bun && sed -i.bak '1s|^#!.*|#!/usr/bin/env bun|' dist/cli.js && rm dist/cli.js.bak",
"dev": "bun run src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"date-fns": "^3.6.0",
"hono": "^4.12.18",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"@types/node": "^20.14.0",
"typescript": "^5.5.0"
},
"engines": {
"bun": ">=1.1.0"
},
"license": "MIT",
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd"
}