26 lines
698 B
JSON
26 lines
698 B
JSON
{
|
|
"name": "@cc-platform/server",
|
|
"version": "0.1.0",
|
|
"description": "Shared Node.js server foundation for cc-platform-core services. Provides Express setup, WebSocket management, SQLite factory, auth middleware, and cross-service integration proxy.",
|
|
"main": "index.js",
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./auth": "./auth.js",
|
|
"./websocket": "./websocket.js",
|
|
"./db": "./db.js",
|
|
"./proxy": "./proxy.js",
|
|
"./health": "./health.js",
|
|
"./shutdown": "./shutdown.js",
|
|
"./rate": "./rate.js"
|
|
},
|
|
"dependencies": {
|
|
"better-sqlite3": "^11.0.0",
|
|
"express": "^4.21.0",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"license": "MIT"
|
|
}
|