@thattobi/narrator-avatar 1.1.10

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/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@thattobi/narrator-avatar",
3
+ "version": "1.1.10",
4
+ "description": "React component for 3D talking avatars with lip-sync, Deepgram/Google TTS, content-aware gestures, and pause/resume",
5
+ "type": "module",
6
+ "main": "./dist/narrator-avatar.umd.cjs",
7
+ "module": "./dist/narrator-avatar.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/narrator-avatar.js",
13
+ "require": "./dist/narrator-avatar.umd.cjs"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "PUBLISHING.md",
20
+ "THIRD_PARTY_NOTICES.md",
21
+ "LICENSE"
22
+ ],
23
+ "scripts": {
24
+ "dev": "npm run dev --prefix playground",
25
+ "playground": "npm run dev --prefix playground",
26
+ "build": "vite build && node scripts/fix-next-worklet-url.mjs",
27
+ "prepublishOnly": "npm run build",
28
+ "check": "npm run build"
29
+ },
30
+ "peerDependencies": {
31
+ "react": ">=18.0.0",
32
+ "react-dom": ">=18.0.0"
33
+ },
34
+ "dependencies": {
35
+ "@met4citizen/headaudio": "^0.1.0",
36
+ "@met4citizen/talkinghead": "^1.7.0",
37
+ "three": "^0.183.0"
38
+ },
39
+ "devDependencies": {
40
+ "@vitejs/plugin-react": "^4.3.0",
41
+ "react": "^19.0.0",
42
+ "react-dom": "^19.0.0",
43
+ "vite": "^6.0.0"
44
+ },
45
+ "keywords": [
46
+ "react",
47
+ "avatar",
48
+ "talking",
49
+ "narrator-avatar",
50
+ "lip-sync",
51
+ "speech",
52
+ "tts",
53
+ "deepgram",
54
+ "voice",
55
+ "3d"
56
+ ],
57
+ "author": "",
58
+ "license": "MIT"
59
+ }