-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 750 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "palefox",
"type": "module",
"private": true,
"scripts": {
"build": "bun run build.ts",
"dev": "bun --watch build.ts",
"typecheck": "bunx tsc --noEmit",
"test": "bun test src/",
"test:rig:setup": "bun run tools/test-driver/firefox-rig.ts",
"test:rig": "bun run tools/test-driver/interactive-rig.ts",
"test:integration": "bun run build && bun run tools/test-driver/firefox-rig.ts && bun run tools/test-driver/runner.ts",
"bench:integration": "bun run build && bun run tools/test-driver/bench-runner.ts",
"firefox:canary": "bun run tools/firefox-canary.ts"
},
"devDependencies": {
"@types/bun": "latest",
"happy-dom": "^20.9.0"
},
"peerDependencies": {
"typescript": "^5"
}
}