create-aura3d 1.1.0 → 1.1.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/dist/cli.js +0 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/templates/cartoon-channel/README.md +11 -1
- package/templates/cartoon-channel/package.json +1 -1
- package/templates/cartoon-channel/src/experimental/README.md +24 -0
- package/templates/cartoon-channel/src/{concept-episode-2-5d.ts → experimental/concept-episode-2-5d.ts} +2 -2
- package/templates/cartoon-channel/src/{image-puppet-episode.ts → experimental/image-puppet-episode.ts} +2 -2
- package/templates/cartoon-channel/src/{puppet-episode-2d.ts → experimental/puppet-episode-2d.ts} +2 -2
- package/templates/cartoon-studio/ASSET-LICENSES.md +41 -0
- package/templates/cartoon-studio/aura.assets.json +321 -78
- package/templates/cartoon-studio/live-route.html +12 -0
- package/templates/cartoon-studio/package-lock.json +2251 -0
- package/templates/cartoon-studio/package.json +6 -5
- package/templates/cartoon-studio/public/aura-assets/luma.authored.glb +0 -0
- package/templates/cartoon-studio/public/aura-assets/miko.authored.glb +0 -0
- package/templates/cartoon-studio/scripts/build-characters.ts +738 -0
- package/templates/cartoon-studio/scripts/build-dialogue-audio.ts +262 -0
- package/templates/cartoon-studio/scripts/episode.ts +48 -1
- package/templates/cartoon-studio/scripts/render-live.ts +873 -0
- package/templates/cartoon-studio/scripts/validate-characters.ts +0 -0
- package/templates/cartoon-studio/src/aura-assets.ts +15 -12
- package/templates/cartoon-studio/src/main.ts +84 -17
- package/templates/cartoon-studio/src/render-live-route.ts +913 -0
- package/templates/cartoon-studio/tsconfig.json +3 -1
- package/templates/cartoon-studio/vite.config.ts +13 -0
- package/templates/cinematic-scene/package.json +1 -1
- package/templates/episode-builder/README.md +4 -0
- package/templates/episode-builder/package.json +1 -1
- package/templates/fighting-game/README.md +16 -0
- package/templates/fighting-game/package.json +1 -1
- package/templates/mini-game/package.json +1 -1
- package/templates/product-viewer/package.json +1 -1
- package/templates/prompt-cartoon-channel/README.md +4 -0
- package/templates/prompt-cartoon-channel/package.json +1 -1
- package/templates/cartoon-studio/public/aura-assets/luma.047f5e5f.glb +0 -0
- package/templates/cartoon-studio/public/aura-assets/luma.humanoid-fixture.glb +0 -0
- package/templates/cartoon-studio/public/aura-assets/miko.047f5e5f.glb +0 -0
- /package/templates/cartoon-channel/src/{concept-episode-2-5d.css → experimental/concept-episode-2-5d.css} +0 -0
- /package/templates/cartoon-channel/src/{image-puppet-episode.css → experimental/image-puppet-episode.css} +0 -0
- /package/templates/cartoon-channel/src/{puppet-episode-2d.css → experimental/puppet-episode-2d.css} +0 -0
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"episode:render": "tsx scripts/episode.ts render",
|
|
11
11
|
"episode:package": "tsx scripts/episode.ts package",
|
|
12
12
|
"episode:review": "tsx scripts/episode.ts review",
|
|
13
|
+
"episode:render-3d": "tsx scripts/render-live.ts",
|
|
13
14
|
"episode:verify": "npm run episode:render && npm run episode:package && npm run episode:review && tsx scripts/episode.ts verify",
|
|
14
15
|
"typecheck": "tsc --noEmit",
|
|
15
16
|
"build": "npm run typecheck && vite build",
|
|
@@ -17,11 +18,11 @@
|
|
|
17
18
|
"test": "playwright test tests/route-health.spec.ts tests/storyboard-playback.spec.ts tests/episode-render.spec.ts tests/motion-quality.spec.ts tests/visual-review.spec.ts --workers=1"
|
|
18
19
|
},
|
|
19
20
|
"dependencies": {
|
|
20
|
-
"@aura3d/animation": "1.0
|
|
21
|
-
"@aura3d/assets": "1.0
|
|
22
|
-
"@aura3d/core": "1.0
|
|
23
|
-
"@aura3d/physics": "1.0
|
|
24
|
-
"@aura3d/engine": "1.0
|
|
21
|
+
"@aura3d/animation": "1.1.0",
|
|
22
|
+
"@aura3d/assets": "1.1.0",
|
|
23
|
+
"@aura3d/core": "1.1.0",
|
|
24
|
+
"@aura3d/physics": "1.1.0",
|
|
25
|
+
"@aura3d/engine": "1.1.0"
|
|
25
26
|
},
|
|
26
27
|
"devDependencies": {
|
|
27
28
|
"@playwright/test": "^1.52.0",
|
|
Binary file
|
|
Binary file
|