-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1001 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1001 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
{
"name": "netdigest",
"description": "Compact network capture for DevTools, exported as token-efficient TOON",
"private": true,
"version": "1.1.0",
"type": "module",
"scripts": {
"icons": "node scripts/icons.mjs",
"landing": "wxt build && node scripts/build-landing.mjs",
"bench": "esbuild scripts/benchmark.entry.mjs --bundle --format=esm --outfile=.bench.tmp.mjs --log-level=error && node .bench.tmp.mjs && node -e \"require('node:fs').unlinkSync('.bench.tmp.mjs')\"",
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"test": "vitest run"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"esbuild": "^0.28.1",
"typescript": "^5.9.3",
"vitest": "^4.1.8",
"wxt": "^0.20.26"
},
"dependencies": {
"@toon-format/toon": "^2.3.0"
}
}