31 lines
709 B
JSON
31 lines
709 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|