forked from xmtplabs/coder-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 948 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 948 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
{
"name": "xmtp-coder-action",
"version": "0.1.0",
"description": "GitHub App webhook server for managing Coder AI task lifecycle",
"scripts": {
"build": "bun build src/main.ts --outfile dist/server.js --target bun --external pino --external pino-pretty",
"start": "bun run dist/server.js",
"dev": "bun run --watch src/main.ts",
"test": "bun test",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint --error-on-warnings .",
"typecheck": "tsc --noEmit",
"check": "bun run typecheck && bun run lint && bun run format:check && bun test"
},
"dependencies": {
"@octokit/auth-app": "^8.2.0",
"@octokit/graphql": "^9.0.3",
"@octokit/rest": "^22.0.1",
"@octokit/webhooks": "^14.2.0",
"hono": "^4.12.9",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@types/bun": "latest",
"typescript": "^5.9.3"
}
}