aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: cc9bdca790fa18f83ebdfe9531e55d3ca47e1b36 (plain) (blame)
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
{
  "name": "windowtool",
  "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": "deno --allow-read=node_modules --allow-write=src/lib src/lib/gen-webext-polyfill.ts && concurrently --kill-others-on-fail \"vite build\" \"vite build --config vite.config.background.ts\"",
    "build:watch": "deno --allow-read=node_modules --allow-write=src/lib src/lib/gen-webext-polyfill.ts && concurrently --kill-others-on-fail \"vite build --watch\" \"vite build --watch --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.9",
    "@sveltejs/kit": "2.37.0",
    "@sveltejs/vite-plugin-svelte": "6.1.3",
    "@tailwindcss/vite": "4.1.12",
    "@types/webextension-polyfill": "0.12.3",
    "autoprefixer": "10.4.21",
    "cheerio": "1.1.2",
    "concurrently": "9.2.1",
    "esbuild": "0.25.9",
    "monaco-editor": "0.52.2",
    "svelte": "5.38.6",
    "svelte-check": "4.3.1",
    "svelte-preprocess": "6.0.3",
    "tailwindcss": "4.1.12",
    "tiny-glob": "0.2.9",
    "typescript": "5.9.2",
    "vite": "7.1.3",
    "web-ext": "8.9.0",
    "webextension-polyfill": "0.12.0"
  },
  "pnpm": {
    "onlyBuiltDependencies": [
      "esbuild"
    ]
  },
  "dependencies": {
    "brotli-wasm": "3.0.1",
    "esbuild-wasm": "0.25.0",
    "monaco-editor-core": "0.52.2"
  }
}