@msobiecki/react-marauders-path 1.2.0 → 1.4.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.
- package/README.md +3 -6
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -104,9 +104,6 @@ npm run dev
|
|
|
104
104
|
This example demonstrates:
|
|
105
105
|
|
|
106
106
|
- Real-time keyboard input handling
|
|
107
|
-
- Game loop integration
|
|
108
|
-
- Movement and camera control
|
|
109
|
-
- Collision detection
|
|
110
107
|
|
|
111
108
|
## Development
|
|
112
109
|
|
|
@@ -130,10 +127,10 @@ npm lint
|
|
|
130
127
|
|
|
131
128
|
## Project Status
|
|
132
129
|
|
|
133
|
-
- 🚧 Core `useKey`
|
|
134
|
-
- 🚧
|
|
130
|
+
- 🚧 Core `useKey` hook combinations support
|
|
131
|
+
- 🚧 `useKey` hook combinations unit test coverage
|
|
135
132
|
- 🚧 Core `useMouse` hook
|
|
136
|
-
- 🚧
|
|
133
|
+
- 🚧 Core `useMouse` hook unit test coverage
|
|
137
134
|
- 🚧 Example of usage
|
|
138
135
|
|
|
139
136
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@msobiecki/react-marauders-path",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22.17.1"
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"dev": "vite build --watch",
|
|
15
15
|
"build": "vite build",
|
|
16
|
+
"test": "vitest",
|
|
16
17
|
"lint": "eslint",
|
|
17
18
|
"prepare": "husky"
|
|
18
19
|
},
|
|
@@ -24,22 +25,25 @@
|
|
|
24
25
|
"@anolilab/multi-semantic-release": "^4.1.1",
|
|
25
26
|
"@commitlint/cli": "^20.4.1",
|
|
26
27
|
"@commitlint/config-conventional": "^20.4.1",
|
|
28
|
+
"@msobiecki/eslint-config": "^9.11.0",
|
|
27
29
|
"@semantic-release/changelog": "^6.0.3",
|
|
28
30
|
"@semantic-release/git": "^10.0.1",
|
|
29
|
-
"
|
|
30
|
-
"semantic-release": "^25.0.3",
|
|
31
|
-
"@msobiecki/eslint-config": "^9.11.0",
|
|
31
|
+
"@testing-library/react": "^16.3.2",
|
|
32
32
|
"@types/node": "^25.2.0",
|
|
33
33
|
"@types/react": "^19.2.7",
|
|
34
34
|
"@types/react-dom": "^19.2.3",
|
|
35
35
|
"@vitejs/plugin-react-swc": "^4.2.3",
|
|
36
36
|
"eslint": "^9.39.2",
|
|
37
|
+
"husky": "^9.1.7",
|
|
38
|
+
"jsdom": "^28.0.0",
|
|
37
39
|
"lint-staged": "^16.2.7",
|
|
38
40
|
"prettier": "^3.7.4",
|
|
41
|
+
"semantic-release": "^25.0.3",
|
|
39
42
|
"ts-node": "^10.9.2",
|
|
40
43
|
"typescript": "^5.9.3",
|
|
41
44
|
"vite": "^7.3.0",
|
|
42
|
-
"vite-plugin-dts": "^4.5.4"
|
|
45
|
+
"vite-plugin-dts": "^4.5.4",
|
|
46
|
+
"vitest": "^4.0.18"
|
|
43
47
|
},
|
|
44
48
|
"packageManager": "npm@10.9.2"
|
|
45
49
|
}
|