@j-kyoda/vue-three-vrm 0.5.1 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/package.json +15 -6
package/README.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
A Vue 3 component designed to render and display VRM models on your web pages.
|
|
4
4
|
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Package is available on NPM: https://www.npmjs.com/package/@j-kyoda/vue-three-vrm
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm i @j-kyoda/vue-three-vrm
|
|
11
|
+
```
|
|
12
|
+
|
|
5
13
|
## Customize configuration
|
|
6
14
|
|
|
7
15
|
See [Vite Configuration Reference](https://vite.dev/config/).
|
package/package.json
CHANGED
|
@@ -1,22 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@j-kyoda/vue-three-vrm",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "A Vue 3 component designed to render and display VRM models on your web pages.",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"private": false,
|
|
6
7
|
"main": "dist/vue-three-vrm.umd.js",
|
|
7
8
|
"module": "dist/vue-three-vrm.es.js",
|
|
8
9
|
"files": [
|
|
9
10
|
"dist"
|
|
10
11
|
],
|
|
11
|
-
"keywords": [
|
|
12
|
+
"keywords": [
|
|
13
|
+
"vue",
|
|
14
|
+
"components",
|
|
15
|
+
"vrm"
|
|
16
|
+
],
|
|
12
17
|
"author": "j-kyoda <j.kyoda@gmail.com>",
|
|
13
18
|
"license": "MIT",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/j-kyoda/vue-three-vrm.git"
|
|
22
|
+
},
|
|
14
23
|
"peerDependencies": {
|
|
15
|
-
"@pixiv/three-vrm": "^3.4.
|
|
24
|
+
"@pixiv/three-vrm": "^3.4.0",
|
|
16
25
|
"axios": "^1.9.0",
|
|
17
|
-
"three": "
|
|
18
|
-
"vue": "^3.5.
|
|
19
|
-
"vue-axios": "^3.5.
|
|
26
|
+
"three": ">=0.137",
|
|
27
|
+
"vue": "^3.5.0",
|
|
28
|
+
"vue-axios": "^3.5.0"
|
|
20
29
|
},
|
|
21
30
|
"exports": {
|
|
22
31
|
".": {
|