@myned-ai/avatar-chat-widget 0.0.1
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/LICENSE +21 -0
- package/README.md +305 -0
- package/dist/avatar-chat-widget.d.ts +191 -0
- package/dist/avatar-chat-widget.js +42074 -0
- package/dist/avatar-chat-widget.js.map +1 -0
- package/dist/avatar-chat-widget.umd.cjs +2 -0
- package/dist/avatar-chat-widget.umd.cjs.map +1 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@myned-ai/avatar-chat-widget",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Real-time voice/text chat widget with 3D avatar animation",
|
|
6
|
+
"author": "Myned AI",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"homepage": "https://www.myned.ai",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/myned-ai/avatar-chat-widget.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"avatar",
|
|
15
|
+
"chat-widget",
|
|
16
|
+
"websocket",
|
|
17
|
+
"gaussian-splatting",
|
|
18
|
+
"voice-chat",
|
|
19
|
+
"text-chat",
|
|
20
|
+
"3d-avatar"
|
|
21
|
+
],
|
|
22
|
+
"main": "dist/avatar-chat-widget.umd.cjs",
|
|
23
|
+
"module": "dist/avatar-chat-widget.js",
|
|
24
|
+
"types": "dist/avatar-chat-widget.d.ts",
|
|
25
|
+
"jsdelivr": "dist/avatar-chat-widget.umd.cjs",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"import": "./dist/avatar-chat-widget.js",
|
|
29
|
+
"require": "./dist/avatar-chat-widget.umd.cjs",
|
|
30
|
+
"types": "./dist/avatar-chat-widget.d.ts"
|
|
31
|
+
},
|
|
32
|
+
"./style.css": "./dist/avatar-chat-widget.css"
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist",
|
|
36
|
+
"README.md",
|
|
37
|
+
"LICENSE"
|
|
38
|
+
],
|
|
39
|
+
"sideEffects": [
|
|
40
|
+
"*.css"
|
|
41
|
+
],
|
|
42
|
+
"scripts": {
|
|
43
|
+
"dev": "vite",
|
|
44
|
+
"build": "tsc && vite build",
|
|
45
|
+
"build:lib": "tsc && vite build --config vite.config.lib.ts",
|
|
46
|
+
"build:all": "npm run build && npm run build:lib",
|
|
47
|
+
"preview": "vite preview",
|
|
48
|
+
"test:server": "python tools/test_server.py",
|
|
49
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
50
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
51
|
+
"prepublishOnly": "npm run build:lib",
|
|
52
|
+
"release": "npm run build:lib && npm publish"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/three": "^0.182.0",
|
|
56
|
+
"@typescript-eslint/eslint-plugin": "^8.52.0",
|
|
57
|
+
"@typescript-eslint/parser": "^8.52.0",
|
|
58
|
+
"eslint": "^9.39.2",
|
|
59
|
+
"terser": "^5.44.1",
|
|
60
|
+
"tslib": "^2.8.1",
|
|
61
|
+
"typescript": "^5.8.3",
|
|
62
|
+
"vite": "^5.1.6",
|
|
63
|
+
"vite-plugin-dts": "^4.5.4"
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@myned-ai/gsplat-flame-avatar-renderer": "^1.0.2",
|
|
67
|
+
"jszip": "^3.10.1"
|
|
68
|
+
},
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": ">=18.0.0"
|
|
71
|
+
}
|
|
72
|
+
}
|