-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.02 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
{
"name": "github-pr-attachments",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"bin": {
"github-attach": "./bin/github-attach.mjs"
},
"scripts": {
"check": "npm run lint && npm run types:check && npm run typecheck && npm test",
"deploy": "wrangler deploy --minify",
"dev": "wrangler dev",
"format": "biome format --write .",
"lint": "biome check .",
"setup": "node scripts/setup.mjs",
"test": "vitest run && npm run test:cli",
"test:cli": "node --test test-node/*.test.mjs",
"test:watch": "vitest",
"typecheck": "tsc --noEmit && tsc --noEmit -p test/tsconfig.json",
"types": "wrangler types --env-file .dev.vars.example --strict-vars=false",
"types:check": "wrangler types --env-file .dev.vars.example --strict-vars=false --check"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@cloudflare/vitest-pool-workers": "0.18.8",
"@types/node": "^26.1.1",
"typescript": "7.0.2",
"vitest": "4.1.10",
"wrangler": "4.114.0"
}
}