@quakejs/dedicated 1.0.33 → 1.0.34

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 (2) hide show
  1. package/package.json +2 -4
  2. package/server.js +1 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quakejs/dedicated",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "quakejs-dedicated": "server.js"
@@ -8,8 +8,6 @@
8
8
  "dependencies": {
9
9
  "@fails-components/webtransport": "^1.5.1",
10
10
  "@fails-components/webtransport-transport-http3-quiche": "^1.5.1",
11
- "@quakejs/demoq3": "^1.0.4",
12
- "@quakejs/formats": "^1.0.0",
13
- "glob": "^13.0.0"
11
+ "@quakejs/demoq3": "^1.0.4"
14
12
  }
15
13
  }
package/server.js CHANGED
@@ -5,8 +5,6 @@ import path from 'node:path';
5
5
  import util from 'node:util';
6
6
 
7
7
  import demoq3 from '@quakejs/demoq3';
8
- import formats from '@quakejs/formats';
9
- import { glob } from 'glob';
10
8
 
11
9
  import dedicated from './dist/ioq3ded.js';
12
10
 
@@ -104,6 +102,6 @@ const cmdline = `+set fs_contentURL "${contentBaseUrl}" ` +
104
102
  `+set fs_game ${game} ` +
105
103
  '+set dedicated 2 ' +
106
104
  `+set net_port ${port} ` +
107
- `+set com_hunkmegs 150`;
105
+ '+set com_hunkmegs 150';
108
106
 
109
107
  ioq3.callMain([...cmdline.split(/\s+/), ...args.positionals]);