@certe/atmos-editor 0.5.0 → 0.6.0

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.
@@ -78,8 +78,9 @@ if (!fs.existsSync(path.join(root, 'tsconfig.json'))) {
78
78
  console.log('tsconfig.json already exists, skipping');
79
79
  }
80
80
 
81
- // 5. Install dev dependencies
81
+ // 5. Install dependencies
82
82
  console.log('\nInstalling dependencies...');
83
+ execSync('npm install @certe/atmos-physics', { stdio: 'inherit', cwd: root });
83
84
  execSync('npm install -D vite @vitejs/plugin-react typescript', { stdio: 'inherit', cwd: root });
84
85
 
85
86
  // 6. Add scripts to package.json if missing
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@certe/atmos-editor",
3
3
  "description": "Browser-based Unity-style editor for the Atmos Engine — hierarchy, inspector, gizmos",
4
- "version": "0.5.0",
4
+ "version": "0.6.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/certesolutions-cyber/atmos.git",
@@ -56,11 +56,11 @@
56
56
  }
57
57
  },
58
58
  "dependencies": {
59
- "@certe/atmos-animation": "^0.5.0",
60
- "@certe/atmos-assets": "^0.5.0",
61
- "@certe/atmos-core": "^0.5.0",
62
- "@certe/atmos-math": "^0.5.0",
63
- "@certe/atmos-renderer": "^0.5.0",
59
+ "@certe/atmos-animation": "^0.6.0",
60
+ "@certe/atmos-assets": "^0.6.0",
61
+ "@certe/atmos-core": "^0.6.0",
62
+ "@certe/atmos-math": "^0.6.0",
63
+ "@certe/atmos-renderer": "^0.6.0",
64
64
  "react": "^19.0.0",
65
65
  "react-dom": "^19.0.0"
66
66
  },