-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 987 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 987 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
34
35
{
"name": "xmtp-task-action",
"version": "0.1.0",
"description": "GitHub App webhook server for managing Coder AI task lifecycle",
"type": "module",
"scripts": {
"start": "wrangler dev",
"dev": "wrangler dev",
"test": "vitest run",
"test:watch": "vitest",
"deploy": "wrangler deploy",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint --error-on-warnings .",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint && npm run format:check && npm test"
},
"dependencies": {
"@octokit/auth-app": "^8.2.0",
"@octokit/graphql": "^9.0.3",
"@octokit/rest": "^22.0.1",
"@octokit/webhooks": "^14.2.0",
"smol-toml": "^1.6.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@cloudflare/vitest-pool-workers": "^0.14.7",
"@cloudflare/workers-types": "^4.20260418.1",
"@types/node": "^25.6.0",
"typescript": "^6.0.3",
"vitest": "^4.1.0",
"wrangler": "^4.83.0"
}
}