quake2ts 0.0.574 → 0.0.577
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/package.json +5 -4
- package/packages/test-utils/dist/index.cjs +672 -87
- package/packages/test-utils/dist/index.cjs.map +1 -1
- package/packages/test-utils/dist/index.d.cts +139 -17
- package/packages/test-utils/dist/index.d.ts +139 -17
- package/packages/test-utils/dist/index.js +667 -87
- package/packages/test-utils/dist/index.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quake2ts",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.577",
|
|
4
4
|
"description": "Quake II re-release port to TypeScript with WebGL renderer - A complete game engine with physics, networking, and BSP rendering",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -110,12 +110,13 @@
|
|
|
110
110
|
"tsx": "^4.20.6",
|
|
111
111
|
"typescript": "^5.4.5",
|
|
112
112
|
"vitest": "^1.5.3",
|
|
113
|
-
"@quake2ts/
|
|
114
|
-
"@quake2ts/
|
|
113
|
+
"@quake2ts/tests": "^0.0.1",
|
|
114
|
+
"@quake2ts/test-utils": "^0.0.1"
|
|
115
115
|
},
|
|
116
116
|
"dependencies": {
|
|
117
117
|
"gl-matrix": "^3.4.3",
|
|
118
|
-
"pako": "^2.1.0"
|
|
118
|
+
"pako": "^2.1.0",
|
|
119
|
+
"@quake2ts/engine": "^0.0.1"
|
|
119
120
|
},
|
|
120
121
|
"scripts": {
|
|
121
122
|
"build": "pnpm run build:types && pnpm run build:workspace",
|