@myned-ai/gsplat-flame-avatar-renderer 1.0.4 → 1.0.5
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 +5 -15
- package/package.json +2 -9
package/README.md
CHANGED
|
@@ -181,14 +181,14 @@ The library supports hybrid rendering where Gaussian Splat positions are deforme
|
|
|
181
181
|
|
|
182
182
|
## Build Output
|
|
183
183
|
|
|
184
|
-
Rollup produces
|
|
184
|
+
Rollup produces ESM and CommonJS bundles in `dist/`:
|
|
185
185
|
|
|
186
186
|
| File | Format |
|
|
187
187
|
|------|--------|
|
|
188
|
-
| `gsplat-flame-avatar.esm.js` | ES Module |
|
|
189
|
-
| `gsplat-flame-avatar.
|
|
190
|
-
|
|
191
|
-
|
|
188
|
+
| `gsplat-flame-avatar-renderer.esm.js` | ES Module (ESM) — for modern bundlers and browsers |
|
|
189
|
+
| `gsplat-flame-avatar-renderer.cjs.js` | CommonJS (CJS) — for Node `require()` consumers |
|
|
190
|
+
|
|
191
|
+
Builds include inline source maps. Type declarations are available at `dist/index.d.ts`, and the package publishes the `src/` folder for source inspection.
|
|
192
192
|
|
|
193
193
|
---
|
|
194
194
|
|
|
@@ -203,16 +203,6 @@ Rollup produces 4 bundles in `dist/`:
|
|
|
203
203
|
|
|
204
204
|
---
|
|
205
205
|
|
|
206
|
-
### Publishing
|
|
207
|
-
|
|
208
|
-
```bash
|
|
209
|
-
# Bump version and push tag (triggers CI publish)
|
|
210
|
-
npm version patch # or minor, major
|
|
211
|
-
git push --follow-tags
|
|
212
|
-
```
|
|
213
|
-
|
|
214
|
-
---
|
|
215
|
-
|
|
216
206
|
## Credits & Attribution
|
|
217
207
|
|
|
218
208
|
This library is built upon the work of several open-source projects:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myned-ai/gsplat-flame-avatar-renderer",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "FLAME-enabled Gaussian Splatting library for animated avatars with ARKit blendshape support",
|
|
5
5
|
"main": "dist/gsplat-flame-avatar-renderer.cjs.js",
|
|
6
6
|
"module": "dist/gsplat-flame-avatar-renderer.esm.js",
|
|
@@ -53,14 +53,7 @@
|
|
|
53
53
|
"README.md",
|
|
54
54
|
"LICENSE"
|
|
55
55
|
],
|
|
56
|
-
"
|
|
57
|
-
"type": "git",
|
|
58
|
-
"url": "git+https://github.com/myned-ai/gsplat-flame-avatar.git"
|
|
59
|
-
},
|
|
60
|
-
"bugs": {
|
|
61
|
-
"url": "https://github.com/myned-ai/gsplat-flame-avatar/issues"
|
|
62
|
-
},
|
|
63
|
-
"homepage": "https://github.com/myned-ai/gsplat-flame-avatar#readme",
|
|
56
|
+
"homepage": "https://www.myned.ai",
|
|
64
57
|
"engines": {
|
|
65
58
|
"node": ">=16.0.0"
|
|
66
59
|
},
|