Initial import: live state on api.qbirr.com (server v0.6.3)

This commit is contained in:
2026-05-26 16:06:29 +02:00
commit 7ba4cb4a31
38 changed files with 5242 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"name": "wpide-server",
"version": "0.6.3",
"private": true,
"description": "Closed orchestrator server for the WordPress IDE plugin",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"better-sqlite3": "^11.3.0",
"fastify": "^5.0.0",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^20.16.10",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}