Initial commit: restructure to flat layout with ui/ and web/ at root

This commit is contained in:
2026-03-12 21:33:50 +08:00
commit decba25a08
1708 changed files with 199890 additions and 0 deletions

20
web/electron-package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "@openchamber/web",
"version": "1.8.5",
"private": false,
"type": "module",
"main": "./server/index.js",
"types": "./server/index.d.ts",
"bin": {
"openchamber": "./bin/cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun run build:watch",
"dev:server": "bun server/index.js --port ${OPENCHAMBER_PORT:-3001}",
"dev:server:watch": "nodemon --watch server --ext js --exec \"bun server/index.js --port ${OPENCHAMBER_PORT:-3001}\"",
"build": "vite build",
"build:watch": "vite build --watch",
"type-check": "tsc --noEmit",