-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 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
{
"name": "brin-github",
"version": "0.1.0",
"type": "module",
"license": "AGPL-3.0-only",
"private": true,
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/start.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"flue:build": "flue build --target node --output .flue-dist",
"flue:run:pr-scan": "flue run pr-scan --target node --output .flue-dist --env .env --id local-pr-scan --payload '{}'"
},
"engines": {
"node": ">=22.18.0"
},
"dependencies": {
"@daytona/sdk": "^0.175.0",
"@flue/sdk": "^0.5.3",
"@hono/node-server": "^1.19.14",
"better-sqlite3": "^12.9.0",
"hono": "^4.12.19",
"octokit": "^5.0.5",
"pino": "^10.3.1",
"valibot": "^1.0.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@flue/cli": "^0.5.3",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^3.2.4"
},
"overrides": {
"@opentelemetry/otlp-transformer": {
"protobufjs": "8.4.0"
}
}
}