create-aura3d 2.0.1 → 2.0.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/README.md CHANGED
@@ -47,9 +47,10 @@ npx create-aura3d@latest --help
47
47
  - **Static deploys are first-class.** Build output is a browser app you can
48
48
  deploy like any Vite project.
49
49
 
50
- Aura3D 2.0 verifies all 19 registered templates twice: 149/149 checks against
51
- workspace source and 149/149 checks in clean projects that install the exact
52
- packed 2.0.0 dependency graph. Those lifecycles cover install, typecheck,
50
+ Aura3D 2.0.2 scaffolds pin the packed 2.0.2 dependency graph. The historical
51
+ 2.0.0 exact-tarball lifecycle receipts remain the 2.0 major-release record:
52
+ 149/149 checks against workspace source and 149/149 checks in clean projects
53
+ that installed that packed 2.0.0 graph. Those lifecycles cover install, typecheck,
53
54
  production build, browser load, meaningful interaction, static preview,
54
55
  screenshot, route health, and deploy behavior. They prove the scaffold
55
56
  contracts, not universal visual quality or Three.js ecosystem parity.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-aura3d",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-aura3d": "dist/cli.js"
@@ -54,7 +54,7 @@
54
54
  "main": "./dist/index.js",
55
55
  "types": "./dist/index.d.ts",
56
56
  "dependencies": {
57
- "@aura3d/asset-index": "2.0.1"
57
+ "@aura3d/asset-index": "2.0.2"
58
58
  },
59
59
  "description": "Start real Aura3D browser 3D apps in one command with Vite templates, typed GLB/glTF assets, route-health tests, screenshots, and deploy-ready structure.",
60
60
  "keywords": [
@@ -12,7 +12,7 @@
12
12
  "test:negative-failed-puppets": "playwright test tests/concept-2-5d.spec.ts tests/puppet-2d.spec.ts tests/image-puppet.spec.ts tests/concept-2-5d-animation.spec.ts tests/puppet-2d-animation.spec.ts tests/image-puppet-animation.spec.ts --workers=1"
13
13
  },
14
14
  "dependencies": {
15
- "@aura3d/engine": "2.0.0"
15
+ "@aura3d/engine": "2.0.2"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@playwright/test": "^1.52.0",
@@ -16,8 +16,8 @@
16
16
  "preview": "vite preview --host 0.0.0.0"
17
17
  },
18
18
  "dependencies": {
19
- "@aura3d/animation": "2.0.0",
20
- "@aura3d/engine": "2.0.0",
19
+ "@aura3d/animation": "2.0.2",
20
+ "@aura3d/engine": "2.0.2",
21
21
  "react": "^18.3.1",
22
22
  "react-dom": "^18.3.1",
23
23
  "sharp": "^0.33.5"
@@ -32,7 +32,7 @@ npm run enable:physics
32
32
  ```
33
33
 
34
34
  The script executes
35
- `npm install @aura3d/physics@2.0.0 @aura3d/physics-rapier@2.0.0`, so the
35
+ `npm install @aura3d/physics@2.0.2 @aura3d/physics-rapier@2.0.2`, so the
36
36
  large asynchronous physical backend is added only when this physical capsule
37
37
  path is selected and never enters the default kinematic scaffold transitively.
38
38
 
@@ -5,15 +5,15 @@
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite --host 127.0.0.1",
8
- "enable:physics": "npm install @aura3d/physics@2.0.0 @aura3d/physics-rapier@2.0.0",
8
+ "enable:physics": "npm install @aura3d/physics@2.0.2 @aura3d/physics-rapier@2.0.2",
9
9
  "typecheck": "tsc --noEmit",
10
10
  "build": "npm run typecheck && vite build",
11
11
  "preview": "vite preview --host 127.0.0.1",
12
12
  "test": "playwright test tests/route-health.spec.ts tests/screenshot.spec.ts --workers=1"
13
13
  },
14
14
  "dependencies": {
15
- "@aura3d/animation": "2.0.0",
16
- "@aura3d/engine": "2.0.0"
15
+ "@aura3d/animation": "2.0.2",
16
+ "@aura3d/engine": "2.0.2"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/screenshot.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/storyboard-playback.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/playable.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@types/node": "^22.15.30",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/gameplay-smoke.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/playable.spec.ts tests/screenshot.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/lean": "2.0.0"
14
+ "@aura3d/lean": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/screenshot.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/lean": "2.0.0"
14
+ "@aura3d/lean": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/storyboard-playback.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/playable.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@types/node": "^22.15.30",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/screenshot.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/screenshot.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/screenshot.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/screenshot.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/screenshot.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/screenshot.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/screenshot.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",
@@ -11,7 +11,7 @@
11
11
  "test": "playwright test tests/route-health.spec.ts tests/screenshot.spec.ts --workers=1"
12
12
  },
13
13
  "dependencies": {
14
- "@aura3d/engine": "2.0.0"
14
+ "@aura3d/engine": "2.0.2"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@playwright/test": "^1.52.0",