Skip to content

Commit d1608f5

Browse files
authored
chore(deps): update dev deps and deps (#151)
1 parent 41eae54 commit d1608f5

File tree

6 files changed

+1557
-2144
lines changed

6 files changed

+1557
-2144
lines changed

docs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
},
1414
"devDependencies": {
1515
"@tresjs/leches": "^0.14.0",
16-
"markdown-it": "^14.0.0",
17-
"unocss": "^0.59.4",
16+
"markdown-it": "^14.1.0",
17+
"unocss": "^0.65.1",
1818
"vite-svg-loader": "^5.1.0"
1919
}
2020
}

package.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "module",
44
"version": "0.0.0",
55
"private": true,
6-
"packageManager": "pnpm@9.7.1",
6+
"packageManager": "pnpm@9.15.0",
77
"description": "TresJs physics support, powered by rapier",
88
"author": "Alvaro Saburido <[email protected]> (https://github.com/alvarosabu/)",
99
"license": "MIT",
@@ -67,27 +67,27 @@
6767
"@dimforge/rapier3d-compat": "^0.14.0"
6868
},
6969
"devDependencies": {
70-
"@release-it/conventional-changelog": "^8.0.1",
71-
"@tresjs/core": "^4.2.10",
72-
"@tresjs/eslint-config": "^1.3.0",
73-
"@types/node": "^22.5.4",
74-
"@types/three": "^0.168.0",
75-
"@vitejs/plugin-vue": "^5.1.3",
70+
"@release-it/conventional-changelog": "^9.0.3",
71+
"@tresjs/core": "^4.3.1",
72+
"@tresjs/eslint-config": "^1.4.0",
73+
"@types/node": "^22.10.2",
74+
"@types/three": "^0.170.0",
75+
"@vitejs/plugin-vue": "^5.2.1",
7676
"dts": "^0.1.1",
77-
"eslint": "^9.10.0",
78-
"eslint-plugin-vue": "^9.28.0",
77+
"eslint": "^9.16.0",
78+
"eslint-plugin-vue": "^9.32.0",
7979
"kolorist": "^1.8.0",
8080
"pathe": "^1.1.2",
81-
"release-it": "^17.6.0",
81+
"release-it": "^17.10.0",
8282
"rollup-plugin-analyzer": "^4.0.0",
83-
"three": "^0.168.0",
84-
"typescript": "^5.6.2",
85-
"unocss": "^0.62.3",
86-
"vite": "^5.4.4",
83+
"three": "^0.171.0",
84+
"typescript": "^5.7.2",
85+
"unocss": "^0.65.1",
86+
"vite": "^6.0.3",
8787
"vite-plugin-banner": "^0.8.0",
88-
"vite-plugin-dts": "^4.2.1",
88+
"vite-plugin-dts": "^4.3.0",
8989
"vitepress": "1.3.4",
90-
"vue": "^3.5.4",
91-
"vue-tsc": "^2.1.6"
90+
"vue": "^3.5.13",
91+
"vue-tsc": "^2.1.10"
9292
}
9393
}

playground/.eslintrc-auto-import.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,13 @@
6262
"watch": true,
6363
"watchEffect": true,
6464
"watchPostEffect": true,
65-
"watchSyncEffect": true
65+
"watchSyncEffect": true,
66+
"DirectiveBinding": true,
67+
"MaybeRef": true,
68+
"MaybeRefOrGetter": true,
69+
"onWatcherCleanup": true,
70+
"useId": true,
71+
"useModel": true,
72+
"useTemplateRef": true
6673
}
6774
}

playground/auto-imports.d.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// @ts-nocheck
44
// noinspection JSUnusedGlobalSymbols
55
// Generated by unplugin-auto-import
6+
// biome-ignore lint: disable
67
export {}
78
declare global {
89
const EffectScope: typeof import('vue')['EffectScope']
@@ -35,6 +36,7 @@ declare global {
3536
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
3637
const onUnmounted: typeof import('vue')['onUnmounted']
3738
const onUpdated: typeof import('vue')['onUpdated']
39+
const onWatcherCleanup: typeof import('vue')['onWatcherCleanup']
3840
const provide: typeof import('vue')['provide']
3941
const reactive: typeof import('vue')['reactive']
4042
const readonly: typeof import('vue')['readonly']
@@ -52,7 +54,10 @@ declare global {
5254
const useAttrs: typeof import('vue')['useAttrs']
5355
const useCssModule: typeof import('vue')['useCssModule']
5456
const useCssVars: typeof import('vue')['useCssVars']
57+
const useId: typeof import('vue')['useId']
58+
const useModel: typeof import('vue')['useModel']
5559
const useSlots: typeof import('vue')['useSlots']
60+
const useTemplateRef: typeof import('vue')['useTemplateRef']
5661
const watch: typeof import('vue')['watch']
5762
const watchEffect: typeof import('vue')['watchEffect']
5863
const watchPostEffect: typeof import('vue')['watchPostEffect']
@@ -61,6 +66,6 @@ declare global {
6166
// for type re-export
6267
declare global {
6368
// @ts-ignore
64-
export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
69+
export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
6570
import('vue')
6671
}

playground/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@tresjs/cientos": "^3.9.0",
13-
"vue": "^3.4.27",
14-
"vue-router": "^4.3.3"
12+
"@tresjs/cientos": "^4.0.3",
13+
"vue": "^3.5.13",
14+
"vue-router": "^4.5.0"
1515
},
1616
"devDependencies": {
17-
"@vitejs/plugin-vue": "^5.0.5",
17+
"@vitejs/plugin-vue": "^5.2.1",
1818
"pathe": "^1.1.2",
19-
"typescript": "^5.4.5",
20-
"unplugin-auto-import": "^0.17.6",
21-
"unplugin-vue-components": "^0.27.0",
22-
"vite": "^5.2.13",
19+
"typescript": "^5.7.2",
20+
"unplugin-auto-import": "^0.18.6",
21+
"unplugin-vue-components": "^0.27.5",
22+
"vite": "^6.0.3",
2323
"vite-plugin-qrcode": "^0.2.3",
24-
"vue-tsc": "^2.0.21"
24+
"vue-tsc": "^2.1.10"
2525
}
2626
}

0 commit comments

Comments
 (0)