@zeewain/3d-avatar-sdk 1.2.1 → 1.2.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.
- package/README.md +3 -4
- package/dist/assets/Build/webgl.data.unityweb +0 -0
- package/dist/assets/Build/webgl.framework.js.unityweb +0 -0
- package/dist/assets/Build/webgl.wasm.unityweb +0 -0
- package/dist/examples/test-umd/index.html +762 -0
- package/dist/examples/test-vue2/.eslintignore +45 -0
- package/dist/examples/test-vue2/.eslintrc.js +174 -0
- package/dist/examples/test-vue2/.stylelintignore +50 -0
- package/dist/examples/test-vue2/.stylelintrc.js +79 -0
- package/dist/examples/test-vue2/README.md +139 -0
- package/dist/examples/test-vue2/babel.config.js +14 -0
- package/dist/examples/test-vue2/package.json +53 -0
- package/dist/examples/test-vue2/pnpm-lock.yaml +8776 -0
- package/dist/examples/test-vue2/public/index.html +19 -0
- package/dist/examples/test-vue2/setup.js +170 -0
- package/dist/examples/test-vue2/src/App.vue +943 -0
- package/dist/examples/test-vue2/src/components/BroadcastAPI.vue +666 -0
- package/dist/examples/test-vue2/src/components/CameraAPI.vue +414 -0
- package/dist/examples/test-vue2/src/components/GlobalConfig.vue +200 -0
- package/dist/examples/test-vue2/src/components/InfoCards.vue +294 -0
- package/dist/examples/test-vue2/src/components/InitAPI.vue +334 -0
- package/dist/examples/test-vue2/src/components/LogPanel.vue +249 -0
- package/dist/examples/test-vue2/src/components/MotionControlAPI.vue +400 -0
- package/dist/examples/test-vue2/src/components/UnityPreview.vue +201 -0
- package/dist/examples/test-vue2/src/main.js +16 -0
- package/dist/examples/test-vue2/vue.config.js +41 -0
- package/dist/examples/test-vue3/.eslintrc +3 -0
- package/dist/examples/test-vue3/.stylelintignore +3 -0
- package/dist/examples/test-vue3/.stylelintrc +48 -0
- package/dist/examples/test-vue3/README.md +236 -0
- package/dist/examples/test-vue3/env.d.ts +8 -0
- package/dist/examples/test-vue3/index.html +95 -0
- package/dist/examples/test-vue3/package.json +55 -0
- package/dist/examples/test-vue3/pnpm-lock.yaml +4636 -0
- package/dist/examples/test-vue3/setup.js +167 -0
- package/dist/examples/test-vue3/src/App.vue +962 -0
- package/dist/examples/test-vue3/src/components/BroadcastAPI.vue +636 -0
- package/dist/examples/test-vue3/src/components/CameraAPI.vue +376 -0
- package/dist/examples/test-vue3/src/components/GlobalConfig.vue +213 -0
- package/dist/examples/test-vue3/src/components/InfoCards.vue +288 -0
- package/dist/examples/test-vue3/src/components/InitAPI.vue +339 -0
- package/dist/examples/test-vue3/src/components/LogPanel.vue +236 -0
- package/dist/examples/test-vue3/src/components/MotionControlAPI.vue +373 -0
- package/dist/examples/test-vue3/src/components/UnityPreview.vue +189 -0
- package/dist/examples/test-vue3/src/main.ts +12 -0
- package/dist/examples/test-vue3/src/types.ts +9 -0
- package/dist/examples/test-vue3/tsconfig.json +44 -0
- package/dist/examples/test-vue3/tsconfig.node.json +14 -0
- package/dist/examples/test-vue3/vite.config.ts +75 -0
- package/dist/index.d.ts +15 -9
- package/dist/index.es5.js +64 -17
- package/dist/index.es5.umd.js +64 -17
- package/dist/index.esm.js +71 -16
- package/dist/index.umd.cjs +71 -16
- package/package.json +4 -3
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zee-avatar-sdk-vue3-test",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "ZEEAvatarSDK Vue3 + TypeScript + Vite 测试项目",
|
|
5
|
+
"private": true,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"dev": "node setup.js && vite",
|
|
9
|
+
"dev:npm": "node setup.js --prod && vite",
|
|
10
|
+
"build": "node setup.js --prod && vite build",
|
|
11
|
+
"build:dev": "node setup.js --prod && vite build --mode dev",
|
|
12
|
+
"build:test": "node setup.js --prod && vite build --mode test",
|
|
13
|
+
"preview": "vite preview",
|
|
14
|
+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
15
|
+
"lint:js": "eslint --ext .js,.ts,.vue src/",
|
|
16
|
+
"lint:css": "stylelint \"src/**/*.{vue,scss,css}\"",
|
|
17
|
+
"lint:fix": "eslint --ext .js,.ts,.vue src/ --fix",
|
|
18
|
+
"lint:css-fix": "stylelint \"src/**/*.{vue,scss,css}\" --fix",
|
|
19
|
+
"lint:all": "npm run lint:js && npm run lint:css",
|
|
20
|
+
"lint:all-fix": "npm run lint:fix && npm run lint:css-fix",
|
|
21
|
+
"type-check": "vue-tsc --noEmit"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
25
|
+
"@vueuse/core": "^13.5.0",
|
|
26
|
+
"@vueuse/integrations": "^13.5.0",
|
|
27
|
+
"@zeewain/3d-avatar-sdk": "^1.2.2",
|
|
28
|
+
"element-plus": "^2.10.4",
|
|
29
|
+
"vue": "^3.5.17"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@cyril_m/eslint-config": "0.1.14",
|
|
33
|
+
"@types/node": "^20.19.7",
|
|
34
|
+
"@vitejs/plugin-vue": "^5.2.4",
|
|
35
|
+
"@vue/tsconfig": "^0.5.1",
|
|
36
|
+
"eslint": "8.57.1",
|
|
37
|
+
"fs-extra": "^11.3.0",
|
|
38
|
+
"sass": "1.58.0",
|
|
39
|
+
"stylelint": "14.16.1",
|
|
40
|
+
"stylelint-config-standard": "29.0.0",
|
|
41
|
+
"stylelint-config-standard-scss": "6.1.0",
|
|
42
|
+
"stylelint-config-standard-vue": "1.0.0",
|
|
43
|
+
"stylelint-scss": "4.7.0",
|
|
44
|
+
"typescript": "^4.9.5",
|
|
45
|
+
"unplugin-auto-import": "^0.17.8",
|
|
46
|
+
"unplugin-vue-components": "^0.26.0",
|
|
47
|
+
"vite": "^5.4.19",
|
|
48
|
+
"vue-tsc": "^1.8.27"
|
|
49
|
+
},
|
|
50
|
+
"browserslist": [
|
|
51
|
+
"> 1%",
|
|
52
|
+
"last 2 versions",
|
|
53
|
+
"not dead"
|
|
54
|
+
]
|
|
55
|
+
}
|