-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 2.14 KB
/
package.json
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
54
55
56
{
"name": "repub",
"private": true,
"version": "0.0.0",
"repository": "[email protected]:hafaio/repub.git",
"author": "Erik Brinkman <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"cli": "bun run src/cli.ts",
"dev": "next dev",
"fmt": "prettier --cache --write 'src/*.ts' 'pages/*.tsx' 'components/*.tsx' '*.{json,conifg.js}'",
"lint": "tsc && eslint --cache 'src/*.ts' 'pages/*.tsx' 'components/*.tsx'",
"export:images": "<<< $'16\n32\n48\n128' xargs -I@ magick public/repub.svg -background none -resize @x@ images/[email protected] && magick images/repub_*.png favicon.ico",
"export:bundle": "bun build src/background.ts --outfile background.js --minify && bun build src/offscreen.ts --outfile offscreen.js --minify",
"export:options": "next build",
"export:pack": "zip -r --filesync repub.zip background.js favicon.ico images/*.png manifest.json offscreen.html offscreen.js out",
"export": "bun export:images && bun export:bundle && bun export:options && bun export:pack",
"pack": "bun lint && bun test --coverage && bun export"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mozilla/readability": "^0.5.0",
"@mui/icons-material": "^6.3.1",
"@mui/material": "^6.3.1",
"@next/eslint-plugin-next": "^15.1.4",
"@types/base64-js": "^1.3.2",
"@types/bun": "^1.1.16",
"@types/chrome": "^0.0.293",
"@types/jsdom": "^21.1.7",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@types/yargs": "^17.0.33",
"base64-js": "^1.5.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-spellcheck": "^0.0.20",
"jsdom": "^26.0.0",
"leven": "^4.0.0",
"mhtml-stream": "^2.0.1",
"next": "^15.1.4",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier": "^3.4.2",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react": "^19.0.0",
"rmapi-js": "^7.0.0",
"teapub": "^3.1.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"yargs": "^17.7.2"
}
}