talking-head-studio 0.3.5 → 0.3.6
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/dist/filament/editor/FilamentEditor.d.ts +16 -0
- package/dist/filament/editor/FilamentEditor.js +889 -0
- package/dist/filament/editor/FilamentEditor.web.d.ts +19 -0
- package/dist/filament/editor/FilamentEditor.web.js +57 -0
- package/dist/filament/editor/PrecisionPanel.d.ts +1 -0
- package/dist/filament/editor/PrecisionPanel.js +262 -0
- package/dist/filament/editor/boneSnap.d.ts +10 -0
- package/dist/filament/editor/boneSnap.js +107 -0
- package/dist/filament/editor/index.d.ts +5 -0
- package/dist/filament/editor/index.js +19 -0
- package/dist/filament/editor/studioTheme.d.ts +86 -0
- package/dist/filament/editor/studioTheme.js +89 -0
- package/package.json +11 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "talking-head-studio",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
4
4
|
"description": "Cross-platform 3D avatar component for React Native & web — lip-sync, gestures, accessories, and LLM integration. Powered by TalkingHead + Three.js.",
|
|
5
5
|
"main": "dist/index.web.js",
|
|
6
6
|
"browser": "dist/index.web.js",
|
|
@@ -41,6 +41,11 @@
|
|
|
41
41
|
"react-native": "./dist/filament/index.js",
|
|
42
42
|
"types": "./dist/filament/index.d.ts",
|
|
43
43
|
"default": "./dist/filament/index.js"
|
|
44
|
+
},
|
|
45
|
+
"./filament/editor": {
|
|
46
|
+
"react-native": "./dist/filament/editor/index.js",
|
|
47
|
+
"types": "./dist/filament/editor/index.d.ts",
|
|
48
|
+
"default": "./dist/filament/editor/index.js"
|
|
44
49
|
}
|
|
45
50
|
},
|
|
46
51
|
"files": [
|
|
@@ -139,6 +144,7 @@
|
|
|
139
144
|
"@babel/core": "^7.29.0",
|
|
140
145
|
"@babel/preset-env": "^7.29.0",
|
|
141
146
|
"@babel/preset-typescript": "^7.28.5",
|
|
147
|
+
"@expo/vector-icons": "^15.1.1",
|
|
142
148
|
"@react-native/babel-preset": "^0.84.1",
|
|
143
149
|
"@testing-library/react-native": "^13.3.3",
|
|
144
150
|
"@types/jest": "^30.0.0",
|
|
@@ -152,12 +158,16 @@
|
|
|
152
158
|
"eslint-plugin-react": "^7.37.5",
|
|
153
159
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
154
160
|
"eslint-plugin-react-native": "^5.0.0",
|
|
161
|
+
"expo-haptics": "^55.0.9",
|
|
155
162
|
"express": "^5.2.1",
|
|
156
163
|
"jest": "^30.2.0",
|
|
157
164
|
"jest-environment-jsdom": "^30.2.0",
|
|
158
165
|
"metro-react-native-babel-preset": "^0.77.0",
|
|
166
|
+
"moti": "^0.30.0",
|
|
159
167
|
"multer": "^2.1.0",
|
|
160
168
|
"prettier": "^3.8.1",
|
|
169
|
+
"react-native-gesture-handler": "^2.30.0",
|
|
170
|
+
"react-native-reanimated": "^4.2.3",
|
|
161
171
|
"react-native-webview": "^13.16.0",
|
|
162
172
|
"react-test-renderer": "^19.2.4",
|
|
163
173
|
"ts-jest": "^29.4.6"
|