@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.
- package/dist/index.js +0 -0
- package/package.json +7 -6
- package/template-react/package-lock.json +4466 -4488
- package/template-react/package.json +45 -46
- package/template-react/tsconfig.app.json +12 -6
- package/template-vanilla/eslint.config.js +0 -1
- package/template-vanilla/package-lock.json +421 -425
- package/template-vanilla/package.json +13 -12
- package/template-vanilla/src/experiences/cameras/threes/DebugThreeCameraController.ts +2 -2
- package/template-vanilla/src/experiences/commands/InitCommand.ts +10 -5
- package/template-vanilla/src/experiences/engines/threes/MainThree.ts +8 -8
- package/template-vanilla/src/experiences/managers/DebugManager.ts +3 -3
- package/template-vanilla/src/experiences/managers/KeyboardManager.ts +2 -2
- package/template-vanilla/src/experiences/managers/LoaderManager.ts +1 -1
- package/template-vanilla/src/experiences/managers/MouseManager.ts +2 -2
- package/template-vanilla/src/experiences/managers/ResizeManager.ts +1 -1
- package/template-vanilla/src/experiences/managers/threes/ThreeAssetsManager.ts +5 -6
- package/template-vanilla/src/experiences/managers/threes/ThreeCameraControllerManager.ts +1 -1
- package/template-vanilla/src/experiences/types/global.d.ts +3 -2
- package/template-vanilla/src/experiences/views/htmls/bases/HTMLViewBase.ts +3 -3
- package/template-vanilla/src/experiences/views/htmls/loaders/LoaderHTMLView.ts +3 -3
- package/template-vanilla/src/experiences/constants/doms/DomEvent.ts +0 -100
- package/template-vanilla/src/experiences/constants/doms/KeyboardConstant.ts +0 -250
- package/template-vanilla/src/experiences/proxies/bases/PoolProxyBase.ts +0 -61
- package/template-vanilla/src/experiences/tools/Action.ts +0 -23
- package/template-vanilla/src/experiences/tools/Point.ts +0 -56
- package/template-vanilla/src/experiences/utils/AssetUtils.ts +0 -6
- package/template-vanilla/src/experiences/utils/DomUtils.ts +0 -28
|
@@ -1,47 +1,46 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}
|
|
2
|
+
"name": "template-react",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "1.3.5",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "vite",
|
|
8
|
+
"build": "tsc && vite build",
|
|
9
|
+
"preview": "vite preview",
|
|
10
|
+
"lint": "eslint . --max-warnings 0",
|
|
11
|
+
"lint:fix": "eslint . --fix",
|
|
12
|
+
"format": "prettier --write .",
|
|
13
|
+
"format:check": "prettier --check ."
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@dimforge/rapier3d": "^0.19.3",
|
|
17
|
+
"gsap": "^3.14.2",
|
|
18
|
+
"howler": "^2.2.4",
|
|
19
|
+
"lil-gui": "^0.21.0",
|
|
20
|
+
"react": "^19.2.3",
|
|
21
|
+
"react-dom": "^19.2.3",
|
|
22
|
+
"three": "^0.182.0"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@eslint/js": "^9.39.2",
|
|
26
|
+
"@types/howler": "^2.2.12",
|
|
27
|
+
"@types/node": "^25.0.3",
|
|
28
|
+
"@types/react": "^19.2.7",
|
|
29
|
+
"@types/react-dom": "^19.2.3",
|
|
30
|
+
"@types/three": "^0.182.0",
|
|
31
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
32
|
+
"eslint": "^9.39.2",
|
|
33
|
+
"eslint-config-prettier": "^10.1.8",
|
|
34
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
35
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
36
|
+
"eslint-plugin-react-refresh": "^0.4.26",
|
|
37
|
+
"globals": "^16.5.0",
|
|
38
|
+
"prettier": "^3.7.4",
|
|
39
|
+
"sass-embedded": "^1.97.1",
|
|
40
|
+
"three-perf": "^1.0.11",
|
|
41
|
+
"typescript": "~5.9.3",
|
|
42
|
+
"typescript-eslint": "^8.50.1",
|
|
43
|
+
"vite": "^7.3.0",
|
|
44
|
+
"vite-plugin-glsl": "^1.5.5"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -3,11 +3,16 @@
|
|
|
3
3
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
4
4
|
"target": "ES2022",
|
|
5
5
|
"useDefineForClassFields": true,
|
|
6
|
-
"lib": [
|
|
6
|
+
"lib": [
|
|
7
|
+
"ES2022",
|
|
8
|
+
"DOM",
|
|
9
|
+
"DOM.Iterable"
|
|
10
|
+
],
|
|
7
11
|
"module": "ESNext",
|
|
8
|
-
"types": [
|
|
12
|
+
"types": [
|
|
13
|
+
"vite/client"
|
|
14
|
+
],
|
|
9
15
|
"skipLibCheck": true,
|
|
10
|
-
|
|
11
16
|
/* Bundler mode */
|
|
12
17
|
"moduleResolution": "bundler",
|
|
13
18
|
"allowImportingTsExtensions": true,
|
|
@@ -15,7 +20,6 @@
|
|
|
15
20
|
"moduleDetection": "force",
|
|
16
21
|
"noEmit": true,
|
|
17
22
|
"jsx": "react-jsx",
|
|
18
|
-
|
|
19
23
|
/* Linting */
|
|
20
24
|
"strict": true,
|
|
21
25
|
"noUnusedLocals": true,
|
|
@@ -24,5 +28,7 @@
|
|
|
24
28
|
"noFallthroughCasesInSwitch": true,
|
|
25
29
|
"noUncheckedSideEffectImports": true
|
|
26
30
|
},
|
|
27
|
-
"include": [
|
|
28
|
-
|
|
31
|
+
"include": [
|
|
32
|
+
"src"
|
|
33
|
+
]
|
|
34
|
+
}
|