-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.91 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.91 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "repub",
"private": true,
"version": "0.0.0",
"repository": "git@github.com:hafaio/repub.git",
"author": "Erik Brinkman <erik.brinkman@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"cli": "bun run src/cli.ts",
"dev": "next dev",
"fmt": "biome format --write",
"lint": "tsc && biome check",
"export:images": "mkdir -p images && <<< $'16\n32\n48\n128' xargs -I@ rsvg-convert -w @ -h @ public/repub.svg -o images/repub_@.png && magick images/repub_*.png favicon.ico",
"export:bundle": "bun build src/background.ts src/offscreen.ts src/popup.ts --outdir . --sourcemap=linked",
"export:options": "next build",
"export:pack": "zip -r --filesync repub.zip background.js background.js.map favicon.ico images/*.png manifest.json offscreen.html popup.html popup.js popup.js.map offscreen.js offscreen.js.map out",
"export": "bun export:images && bun export:bundle && bun export:options && bun export:pack",
"pack": "bun lint && bun test --coverage && bun export"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mozilla/readability": "^0.6.0",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"@next/eslint-plugin-next": "^16.1.6",
"@types/base64-js": "^1.5.0",
"@types/bun": "^1.3.8",
"@types/chrome": "^0.1.36",
"@types/jsdom": "^27.0.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/yargs": "^17.0.35",
"base64-js": "^1.5.1",
"entities": "^7.0.1",
"jsdom": "^27.4.0",
"leven": "^4.1.0",
"marked": "^17.0.1",
"mhtml-stream": "^2.0.1",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-dropzone": "^14.4.0",
"react-icons": "^5.5.0",
"rmapi-js": "^9.0.2",
"teapub": "^3.1.0",
"typescript": "~5.9.3",
"uuid": "^13.0.0",
"yargs": "^18.0.0"
}
}