-
Notifications
You must be signed in to change notification settings - Fork 285
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 736 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 736 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
{
"name": "@open-inspect/github-bot",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "esbuild src/index.ts --bundle --format=esm --outfile=dist/index.js --platform=browser --target=es2022 --external:cloudflare:* --external:node:*",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix"
},
"dependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"@open-inspect/shared": "file:../shared",
"hono": "^4.12.18"
},
"devDependencies": {
"esbuild": "^0.25.1",
"typescript": "^5.7.2",
"@vitest/coverage-v8": "^3.2.0",
"vitest": "^3.2.0"
}
}