-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.4 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.4 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
33
34
35
36
{
"name": "interceptor-extension",
"private": true,
"type": "module",
"scripts": {
"test": "bun --bun tsc --project tsconfig-test.json && bun ./test/js/test/run-all.js",
"setup-firefox": "bun run vendor && bun run inpage && bun run build-firefox",
"setup-chrome": "bun run vendor && bun run inpage && bun run build-chrome",
"build-firefox": "bun run firefox",
"build-chrome": "bun --bun tsc --project tsconfig.json && bun run bundle && bun run chrome",
"vendor": "cd build && bun install --frozen-lockfile && bun run vendor",
"bundle": "cd build && bun run bundle",
"firefox": "bun -e 'await Bun.write(`app/manifest.json`, Bun.file(`app/manifestV2.json`))'",
"chrome": "bun -e 'await Bun.write(`app/manifest.json`, Bun.file(`app/manifestV3.json`))'",
"inpage": "bun ./node_modules/typescript/lib/tsc.js --project tsconfig-inpage.json",
"knip": "bunx knip@5.1.6",
"knip:exports": "bunx knip@5.1.6 --include exports",
"knip:fix": "bunx knip@5.1.6 --fix",
"cleanup:dryrun": "bunx knip@5.1.6",
"lint": "bunx -p @biomejs/biome@1.6.1 biome lint ."
},
"dependencies": {
"@darkflorist/address-metadata": "0.10.0",
"@noble/curves": "0.8.0",
"@noble/hashes": "1.4.0",
"@preact/signals": "1.1.3",
"ethers": "6.14.0",
"funtypes": "5.1.0",
"preact": "10.24.2",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"@types/firefox-webext-browser": "120.0.3",
"typescript": "5.4.5"
}
}