thevoidforge 21.0.1 → 21.0.2

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.
@@ -165,11 +165,13 @@ async function handleRequest(req, res) {
165
165
  const path = url.pathname;
166
166
  const isLanSafe = path.startsWith('/api/danger-room/')
167
167
  || path.startsWith('/api/war-room/')
168
+ || path.startsWith('/api/project/')
169
+ || path.startsWith('/api/projects')
168
170
  || path === '/api/danger-room/heartbeat'
169
171
  || path.endsWith('.html') || path.endsWith('.js') || path.endsWith('.css')
170
172
  || path.endsWith('.svg') || path.endsWith('.png') || path.endsWith('.ico')
171
173
  || path === '/' || path === '/danger-room.html' || path === '/war-room.html'
172
- || path === '/lobby.html' || path.startsWith('/styles');
174
+ || path === '/lobby.html' || path === '/index.html' || path.startsWith('/styles');
173
175
  if (!isLanSafe) {
174
176
  sendJson(res, 403, { success: false, error: 'Endpoint not available in LAN mode. Use --remote for full access.' });
175
177
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thevoidforge",
3
- "version": "21.0.1",
3
+ "version": "21.0.2",
4
4
  "description": "From nothing, everything. A methodology framework for building with Claude Code.",
5
5
  "type": "module",
6
6
  "engines": {