-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.49 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.49 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
{
"name": "patch-roulette-web-extension",
"displayName": "diffs.dev",
"description": "Streamlines opening diffs in the diffs.dev Diff Viewer.",
"version": "0.0.9",
"private": true,
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "tsc && prettier --check . && eslint .",
"manifest:chrome": "bun scripts/manifest.ts",
"manifest:firefox": "EXTENSION=firefox bun scripts/manifest.ts",
"build": "vite build",
"pack:chrome": "bun run manifest:chrome && bun run build && mkdir -p pack && rm -f pack/chrome.zip && (cd dist && zip -r ../pack/chrome.zip .)",
"pack:firefox": "bun run manifest:firefox && bun run build && mkdir -p pack && rm -f pack/firefox.zip && (cd dist && zip -r ../pack/firefox.zip .)",
"pack": "bun run pack:chrome && bun run pack:firefox"
},
"devDependencies": {
"@eslint/compat": "^2.0.1",
"@eslint/js": "^9.39.2",
"@types/bun": "^1.3.5",
"@types/webextension-polyfill": "^0.12.4",
"chrome-types": "^0.1.408",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "^7.3.1"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"tailwindcss": "^4.1.18",
"webextension-polyfill": "^0.12.0"
}
}