quake2ts 0.0.582 → 0.0.585

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quake2ts",
3
- "version": "0.0.582",
3
+ "version": "0.0.585",
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,8 +110,8 @@
110
110
  "tsx": "^4.20.6",
111
111
  "typescript": "^5.4.5",
112
112
  "vitest": "^1.5.3",
113
- "@quake2ts/tests": "^0.0.1",
114
- "@quake2ts/test-utils": "^0.0.1"
113
+ "@quake2ts/test-utils": "^0.0.1",
114
+ "@quake2ts/tests": "^0.0.1"
115
115
  },
116
116
  "dependencies": {
117
117
  "gl-matrix": "^3.4.3",
@@ -122,6 +122,8 @@
122
122
  "build": "pnpm run build:types && pnpm run build:workspace",
123
123
  "build:types": "tsc -b tsconfig.build.json",
124
124
  "build:workspace": "pnpm -r --filter=!#workspace-root --if-present run build",
125
- "test": "pnpm -r --if-present test"
125
+ "test": "pnpm -r --if-present test",
126
+ "test:unit": "pnpm -r --if-present test:unit",
127
+ "test:integration": "pnpm -r --if-present test:integration"
126
128
  }
127
129
  }