diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/package.json b/package.json index 2091ed7..cc9bdca 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,12 @@ { - "name": "redirext", + "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": "concurrently --kill-others-on-fail \"vite build\" \"vite build --config vite.config.background.ts\"", + "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 ''", @@ -15,25 +16,25 @@ "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" + "@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": [ @@ -42,7 +43,7 @@ }, "dependencies": { "brotli-wasm": "3.0.1", - "esbuild-wasm": "^0.25.0", - "monaco-editor-core": "^0.52.2" + "esbuild-wasm": "0.25.0", + "monaco-editor-core": "0.52.2" } } |