Skip to content

Commit 4485dff

Browse files
committed
refactor: move deps
Signed-off-by: Neko Ayaka <neko@ayaka.moe>
1 parent 920fb6a commit 4485dff

File tree

7 files changed

+67
-127
lines changed

7 files changed

+67
-127
lines changed

apps/stage-tamagotchi/package.json

-15
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,6 @@
1919
"@11labs/client": "^0.1.0",
2020
"@formkit/auto-animate": "^0.8.2",
2121
"@huggingface/transformers": "^3.4.2",
22-
"@pixi/app": "6",
23-
"@pixi/constants": "6",
24-
"@pixi/core": "6",
25-
"@pixi/display": "6",
26-
"@pixi/extensions": "6",
27-
"@pixi/interaction": "6",
28-
"@pixi/loaders": "6",
29-
"@pixi/math": "6",
30-
"@pixi/runner": "6",
31-
"@pixi/settings": "6",
32-
"@pixi/sprite": "6",
33-
"@pixi/ticker": "6",
34-
"@pixi/utils": "6",
3522
"@pixiv/three-vrm": "^3.3.6",
3623
"@pixiv/three-vrm-animation": "^3.3.6",
3724
"@pixiv/three-vrm-core": "^3.3.6",
@@ -65,8 +52,6 @@
6552
"ofetch": "^1.4.1",
6653
"onnxruntime-web": "^1.21.0",
6754
"pinia": "^3.0.1",
68-
"pixi-filters": "^4.2.0",
69-
"pixi-live2d-display": "^0.4.0",
7055
"popmotion": "^11.0.5",
7156
"radix-vue": "^1.9.17",
7257
"rehype-stringify": "^10.0.1",

apps/stage-web/package.json

+1-16
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,11 @@
2020
"@11labs/client": "^0.1.0",
2121
"@formkit/auto-animate": "^0.8.2",
2222
"@huggingface/transformers": "^3.4.2",
23-
"@pixi/app": "6",
24-
"@pixi/constants": "6",
25-
"@pixi/core": "6",
26-
"@pixi/display": "6",
27-
"@pixi/extensions": "6",
28-
"@pixi/interaction": "6",
29-
"@pixi/loaders": "6",
30-
"@pixi/math": "6",
31-
"@pixi/runner": "6",
32-
"@pixi/settings": "6",
33-
"@pixi/sprite": "6",
34-
"@pixi/ticker": "6",
35-
"@pixi/utils": "6",
3623
"@pixiv/three-vrm": "^3.3.6",
3724
"@pixiv/three-vrm-animation": "^3.3.6",
3825
"@pixiv/three-vrm-core": "^3.3.6",
3926
"@proj-airi/ccc": "workspace:^",
4027
"@proj-airi/drizzle-duckdb-wasm": "catalog:",
41-
"@proj-airi/gpuu": "workspace:^",
4228
"@proj-airi/provider-transformers": "workspace:^",
4329
"@proj-airi/server-sdk": "workspace:^",
4430
"@proj-airi/stage-ui": "workspace:^",
@@ -67,15 +53,14 @@
6753
"drizzle-kit": "^0.30.6",
6854
"drizzle-orm": "^0.41.0",
6955
"fluere": "0.3.0-beta.1",
56+
"gpuu": "workspace:^",
7057
"jszip": "^3.10.1",
7158
"localforage": "^1.10.0",
7259
"node-vibrant": "^4.0.3",
7360
"nprogress": "^0.2.0",
7461
"ofetch": "^1.4.1",
7562
"onnxruntime-web": "^1.21.0",
7663
"pinia": "^3.0.1",
77-
"pixi-filters": "^4.2.0",
78-
"pixi-live2d-display": "^0.4.0",
7964
"radix-vue": "^1.9.17",
8065
"rehype-stringify": "^10.0.1",
8166
"remark-parse": "^11.0.0",

apps/stage-web/src/pages/devtools/background-remove.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import type { PreTrainedModel, Processor } from '@huggingface/transformers'
33
44
import { AutoModel, AutoProcessor, env, RawImage } from '@huggingface/transformers'
5-
import { check } from '@proj-airi/gpuu/webgpu'
65
import { InputFile } from '@proj-airi/stage-ui/components'
6+
import { check } from 'gpuu/webgpu'
77
import { computed, onMounted, ref } from 'vue'
88
99
const model = ref<PreTrainedModel>()

docs/src/content/docs/blog/DevLog-2025.03.05.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ we will add more capabilities for it in the future.
1313
It feels like this:
1414

1515
```ts
16-
import { check } from '@proj-airi/gpuu/webgpu'
16+
import { check } from 'gpuu/webgpu'
1717
import { onMounted } from 'vue'
1818

1919
onMounted(async () => {

packages/gpuu/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
console.warn('Please import \'@proj-airi/gpuu\' instead.')
1+
console.warn('Please import \'gpuu\' instead.')

packages/stage-ui/package.json

+15
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,26 @@
5757
},
5858
"dependencies": {
5959
"@formkit/auto-animate": "^0.8.2",
60+
"@pixi/app": "6",
61+
"@pixi/constants": "6",
62+
"@pixi/core": "6",
63+
"@pixi/display": "6",
64+
"@pixi/extensions": "6",
65+
"@pixi/interaction": "6",
66+
"@pixi/loaders": "6",
67+
"@pixi/math": "6",
68+
"@pixi/runner": "6",
69+
"@pixi/settings": "6",
70+
"@pixi/sprite": "6",
71+
"@pixi/ticker": "6",
72+
"@pixi/utils": "6",
6073
"@proj-airi/ccc": "workspace:^",
6174
"@proj-airi/drizzle-duckdb-wasm": "catalog:",
6275
"@proj-airi/server-sdk": "workspace:^",
6376
"@vueuse/core": "^13.0.0",
6477
"@vueuse/motion": "^3.0.3",
78+
"pixi-filters": "^4.2.0",
79+
"pixi-live2d-display": "^0.4.0",
6580
"radix-vue": "^1.9.17",
6681
"reka-ui": "^2.2.0",
6782
"unist-builder": "^4.0.0",

pnpm-lock.yaml

+48-93
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)