@j-kyoda/vue-three-vrm 0.5.1 → 0.5.2

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.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +11 -2
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,16 +1,25 @@
1
1
  {
2
2
  "name": "@j-kyoda/vue-three-vrm",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
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": ["vue", "components", "vrm"],
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
24
  "@pixiv/three-vrm": "^3.4.1",
16
25
  "axios": "^1.9.0",