add workbox-window dependnecy to fix build error

This commit is contained in:
jakub791 2023-05-04 20:44:04 +02:00
parent 05c56640fe
commit 0ca42d3432
2 changed files with 58 additions and 56 deletions

3
package-lock.json generated
View file

@ -29,7 +29,8 @@
"vue-textarea-autosize": "^1.1.1", "vue-textarea-autosize": "^1.1.1",
"vue-toastification": "^2.0.0-rc.1", "vue-toastification": "^2.0.0-rc.1",
"vue-transition-expand": "^0.1.0", "vue-transition-expand": "^0.1.0",
"vuedraggable": "^4.1.0" "vuedraggable": "^4.1.0",
"workbox-window": "^6.5.4"
}, },
"devDependencies": { "devDependencies": {
"@rushstack/eslint-patch": "^1.2.0", "@rushstack/eslint-patch": "^1.2.0",

View file

@ -1,57 +1,58 @@
{ {
"name": "profectus", "name": "profectus",
"version": "0.6.0", "version": "0.6.0",
"private": true, "private": true,
"scripts": { "scripts": {
"start": "vite", "start": "vite",
"dev": "vite", "dev": "vite",
"build": "vue-tsc --noEmit && vite build", "build": "vue-tsc --noEmit && vite build",
"preview": "vite preview", "preview": "vite preview",
"test": "vitest run", "test": "vitest run",
"testw": "vitest", "testw": "vitest",
"serve": "vite preview --host" "serve": "vite preview --host"
}, },
"dependencies": { "dependencies": {
"@fontsource/material-icons": "^4.5.4", "@fontsource/material-icons": "^4.5.4",
"@fontsource/roboto-mono": "^4.5.10", "@fontsource/roboto-mono": "^4.5.10",
"@ivanv/vue-collapse-transition": "^1.0.2", "@ivanv/vue-collapse-transition": "^1.0.2",
"@pixi/app": "^7.2.4", "@pixi/app": "^7.2.4",
"@pixi/constants": "^7.2.4", "@pixi/constants": "^7.2.4",
"@pixi/core": "^7.2.4", "@pixi/core": "^7.2.4",
"@pixi/display": "^7.2.4", "@pixi/display": "^7.2.4",
"@pixi/math": "^7.2.4", "@pixi/math": "^7.2.4",
"@pixi/particle-emitter": "^5.0.8", "@pixi/particle-emitter": "^5.0.8",
"@pixi/sprite": "^7.2.4", "@pixi/sprite": "^7.2.4",
"@pixi/ticker": "^7.2.4", "@pixi/ticker": "^7.2.4",
"is-plain-object": "^5.0.0", "is-plain-object": "^5.0.0",
"lz-string": "^1.5.0", "lz-string": "^1.5.0",
"nanoevents": "^7.0.1", "nanoevents": "^7.0.1",
"vite-plugin-pwa": "^0.14.7", "vite-plugin-pwa": "^0.14.7",
"vue": "^3.2.47", "vue": "^3.2.47",
"vue-next-select": "^2.10.5", "vue-next-select": "^2.10.5",
"vue-panzoom": "https://github.com/thepaperpilot/vue-panzoom.git", "vue-panzoom": "https://github.com/thepaperpilot/vue-panzoom.git",
"vue-textarea-autosize": "^1.1.1", "vue-textarea-autosize": "^1.1.1",
"vue-toastification": "^2.0.0-rc.1", "vue-toastification": "^2.0.0-rc.1",
"vue-transition-expand": "^0.1.0", "vue-transition-expand": "^0.1.0",
"vuedraggable": "^4.1.0" "vuedraggable": "^4.1.0",
}, "workbox-window": "^6.5.4"
"devDependencies": { },
"@rushstack/eslint-patch": "^1.2.0", "devDependencies": {
"@vitejs/plugin-vue": "^4.2.1", "@rushstack/eslint-patch": "^1.2.0",
"@vitejs/plugin-vue-jsx": "^3.0.1", "@vitejs/plugin-vue": "^4.2.1",
"@vue/eslint-config-prettier": "^7.1.0", "@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/eslint-config-typescript": "^11.0.3", "@vue/eslint-config-prettier": "^7.1.0",
"@vue/runtime-dom": "^3.2.47", "@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.6.0", "@vue/runtime-dom": "^3.2.47",
"jsdom": "^22.0.0", "eslint": "^8.6.0",
"prettier": "^2.8.8", "jsdom": "^22.0.0",
"typescript": "^5.0.4", "prettier": "^2.8.8",
"vite": "^4.3.4", "typescript": "^5.0.4",
"vite-tsconfig-paths": "^4.2.0", "vite": "^4.3.4",
"vitest": "^0.31.0", "vite-tsconfig-paths": "^4.2.0",
"vue-tsc": "^1.6.4" "vitest": "^0.31.0",
}, "vue-tsc": "^1.6.4"
"engines": { },
"node": ">=16" "engines": {
} "node": ">=16"
}
} }