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": "redirext",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "concurrently -k --restart-tries -1 --restart-after 1000 \"vite build --mode development --watch\" \"vite build --mode development --watch --config vite.config.background.ts\" \"./do-webext-dev\"",
"build": "concurrently --kill-others-on-fail \"vite build\" \"vite build --config vite.config.background.ts\"",
"build-reproducible": "REPRODUCIBLE=1 pnpm build",
"preview": "web-ext run -p ff-ext --reload -f ./browser-launcher -s ./build",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"install": "mkdir -p static/generated && cp node_modules/esbuild-wasm/esbuild.wasm static/generated/esbuild.wasm",
"postinstall": "cp ts.worker.js node_modules/monaco-editor/esm/vs/language/typescript/ts.worker.js"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/vite": "^4.0.0",
"@types/webextension-polyfill": "0.12.1",
"autoprefixer": "^10.4.20",
"cheerio": "^1.0.0",
"concurrently": "9.1.2",
"esbuild": "^0.25.0",
"monaco-editor": "^0.52.2",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^4.0.0",
"tiny-glob": "^0.2.9",
"typescript": "^5.0.0",
"vite": "^6.0.0",
"web-ext": "^8.4.0",
"webextension-polyfill": "^0.12.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"icons": {
"16": "favicon16.png",
"32": "favicon32.png",
"48": "favicon48.png",
"64": "favicon64.png",
"96": "favicon96.png",
"128": "favicon128.png"
},
"dependencies": {
"brotli-wasm": "3.0.1",
"esbuild-wasm": "^0.25.0",
"monaco-editor-core": "^0.52.2"
}
}
|