@benjos/create-boilerplate 1.3.2 → 1.3.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.
Files changed (28) hide show
  1. package/dist/index.js +0 -0
  2. package/package.json +7 -6
  3. package/template-react/package-lock.json +4466 -4488
  4. package/template-react/package.json +45 -46
  5. package/template-react/tsconfig.app.json +12 -6
  6. package/template-vanilla/eslint.config.js +0 -1
  7. package/template-vanilla/package-lock.json +421 -425
  8. package/template-vanilla/package.json +13 -12
  9. package/template-vanilla/src/experiences/cameras/threes/DebugThreeCameraController.ts +2 -2
  10. package/template-vanilla/src/experiences/commands/InitCommand.ts +10 -5
  11. package/template-vanilla/src/experiences/engines/threes/MainThree.ts +8 -8
  12. package/template-vanilla/src/experiences/managers/DebugManager.ts +3 -3
  13. package/template-vanilla/src/experiences/managers/KeyboardManager.ts +2 -2
  14. package/template-vanilla/src/experiences/managers/LoaderManager.ts +1 -1
  15. package/template-vanilla/src/experiences/managers/MouseManager.ts +2 -2
  16. package/template-vanilla/src/experiences/managers/ResizeManager.ts +1 -1
  17. package/template-vanilla/src/experiences/managers/threes/ThreeAssetsManager.ts +5 -6
  18. package/template-vanilla/src/experiences/managers/threes/ThreeCameraControllerManager.ts +1 -1
  19. package/template-vanilla/src/experiences/types/global.d.ts +3 -2
  20. package/template-vanilla/src/experiences/views/htmls/bases/HTMLViewBase.ts +3 -3
  21. package/template-vanilla/src/experiences/views/htmls/loaders/LoaderHTMLView.ts +3 -3
  22. package/template-vanilla/src/experiences/constants/doms/DomEvent.ts +0 -100
  23. package/template-vanilla/src/experiences/constants/doms/KeyboardConstant.ts +0 -250
  24. package/template-vanilla/src/experiences/proxies/bases/PoolProxyBase.ts +0 -61
  25. package/template-vanilla/src/experiences/tools/Action.ts +0 -23
  26. package/template-vanilla/src/experiences/tools/Point.ts +0 -56
  27. package/template-vanilla/src/experiences/utils/AssetUtils.ts +0 -6
  28. package/template-vanilla/src/experiences/utils/DomUtils.ts +0 -28
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benjos/create-boilerplate",
3
- "version": "1.3.2",
3
+ "version": "1.3.5",
4
4
  "description": "CLI to scaffold Three.js projects with framework support",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,15 +33,16 @@
33
33
  },
34
34
  "homepage": "https://github.com/LeBenjos/boilerplate#readme",
35
35
  "dependencies": {
36
- "chalk": "^5.3.0",
37
- "commander": "^12.1.0",
38
- "fs-extra": "^11.2.0",
36
+ "@inquirer/rawlist": "^5.1.0",
37
+ "chalk": "^5.6.2",
38
+ "commander": "^14.0.2",
39
+ "fs-extra": "^11.3.3",
39
40
  "inquirer": "^9.2.12"
40
41
  },
41
42
  "devDependencies": {
42
43
  "@types/fs-extra": "^11.0.4",
43
- "@types/inquirer": "^9.0.7",
44
- "@types/node": "^20.10.5",
44
+ "@types/inquirer": "^9.0.9",
45
+ "@types/node": "^25.0.3",
45
46
  "typescript": "~5.9.3"
46
47
  }
47
48
  }