bump dependencies

This commit is contained in:
jakub791 2023-05-03 23:03:01 +02:00
parent 655fb9230d
commit 27084ef7a0
3 changed files with 60 additions and 76 deletions

2
package-lock.json generated
View file

@ -48,7 +48,7 @@
"vue-tsc": "^0.38.1" "vue-tsc": "^0.38.1"
}, },
"engines": { "engines": {
"node": "16.x" "node": ">=16"
} }
}, },
"node_modules/@ampproject/remapping": { "node_modules/@ampproject/remapping": {

View file

@ -13,25 +13,25 @@
}, },
"dependencies": { "dependencies": {
"@fontsource/material-icons": "^4.5.4", "@fontsource/material-icons": "^4.5.4",
"@fontsource/roboto-mono": "^4.5.8", "@fontsource/roboto-mono": "^4.5.10",
"@pixi/app": "~6.3.2", "@pixi/app": "^7.2.4",
"@pixi/constants": "~6.3.2", "@pixi/constants": "^7.2.4",
"@pixi/core": "~6.3.2", "@pixi/core": "^7.2.4",
"@pixi/display": "~6.3.2", "@pixi/display": "^7.2.4",
"@pixi/math": "~6.3.2", "@pixi/math": "^7.2.4",
"@pixi/particle-emitter": "^5.0.7", "@pixi/particle-emitter": "^5.0.8",
"@pixi/sprite": "~6.3.2", "@pixi/sprite": "^7.2.4",
"@pixi/ticker": "~6.3.2", "@pixi/ticker": "^7.2.4",
"@vitejs/plugin-vue": "^2.3.3", "@vitejs/plugin-vue": "^4.2.1",
"@vitejs/plugin-vue-jsx": "^1.3.10", "@vitejs/plugin-vue-jsx": "^3.0.1",
"is-plain-object": "^5.0.0", "is-plain-object": "^5.0.0",
"lz-string": "^1.4.4", "lz-string": "^1.5.0",
"nanoevents": "^6.0.2", "nanoevents": "^7.0.1",
"vite": "^2.9.12", "vite": "^4.3.4",
"vite-plugin-pwa": "^0.12.0", "vite-plugin-pwa": "^0.14.7",
"vite-tsconfig-paths": "^3.5.0", "vite-tsconfig-paths": "^4.2.0",
"vue": "^3.2.26", "vue": "^3.2.47",
"vue-next-select": "^2.10.2", "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",
@ -40,16 +40,16 @@
}, },
"devDependencies": { "devDependencies": {
"@ivanv/vue-collapse-transition": "^1.0.2", "@ivanv/vue-collapse-transition": "^1.0.2",
"@rushstack/eslint-patch": "^1.1.0", "@rushstack/eslint-patch": "^1.2.0",
"@types/lz-string": "^1.3.34", "@types/lz-string": "^1.5.0",
"@vue/eslint-config-prettier": "^7.0.0", "@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^10.0.0", "@vue/eslint-config-typescript": "^11.0.3",
"eslint": "^8.6.0", "eslint": "^8.6.0",
"jsdom": "^20.0.0", "jsdom": "^22.0.0",
"prettier": "^2.5.1", "prettier": "^2.8.8",
"typescript": "^5.0.2", "typescript": "^5.0.4",
"vitest": "^0.29.3", "vitest": "^0.31.0",
"vue-tsc": "^0.38.1" "vue-tsc": "^1.6.3"
}, },
"engines": { "engines": {
"node": ">=16" "node": ">=16"

View file

@ -1,50 +1,34 @@
{ {
"compilerOptions": { "compilerOptions": {
"noErrorTruncation": true, "noErrorTruncation": true,
"target": "esnext", "target": "esnext",
"module": "esnext", "module": "esnext",
"strict": true, "strict": true,
"checkJs": false, "checkJs": false,
"jsx": "preserve", "jsx": "preserve",
"importHelpers": true, "importHelpers": true,
"moduleResolution": "node", "moduleResolution": "node",
"resolveJsonModule": true, "resolveJsonModule": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"esModuleInterop": true, "esModuleInterop": true,
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"sourceMap": true, "sourceMap": true,
"baseUrl": "src", "baseUrl": "src",
"types": [ "types": ["vite/client"],
"vite/client", "lib": ["esnext", "dom", "dom.iterable", "scripthost"]
"node" },
], "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
"lib": [ "exclude": ["node_modules"],
"esnext", "typedocOptions": {
"dom", "entryPoints": ["src"],
"dom.iterable", "entryPointStrategy": "expand",
"scripthost" "cleanOutputDir": true,
] "name": "Profectus",
}, "includeVersion": true,
"include": [ "categorizeByGroup": false,
"src/**/*.ts", "readme": "none",
"src/**/*.tsx", "out": "../docs/api"
"src/**/*.vue", }
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
],
"typedocOptions": {
"entryPoints": ["src"],
"entryPointStrategy": "expand",
"cleanOutputDir": true,
"name": "Profectus",
"includeVersion": true,
"categorizeByGroup": false,
"readme": "none",
"out": "../docs/api"
}
} }