39 lines
1.4 KiB
JSON
39 lines
1.4 KiB
JSON
{
|
|
"name": "omniai-key-server",
|
|
"version": "1.0.0",
|
|
"description": "OmniAI Key Management & Proxy Server",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "node --watch src/index.js",
|
|
"init-db": "node src/initDb.js",
|
|
"add-user": "node src/cli/addUser.js",
|
|
"add-key": "node src/cli/addKey.js",
|
|
"remove-key": "node src/cli/removeKey.js",
|
|
"list-keys": "node src/cli/listKeys.js",
|
|
"audit-routes": "node src/cli/auditModelRoutes.js",
|
|
"import-config": "node src/cli/importConfig.js",
|
|
"init-pools": "node src/cli/initPools.js",
|
|
"test:community-routes": "node scripts/communityRouteContract.test.js",
|
|
"test:enterprise-video-pricing": "node scripts/enterpriseVideoPricingContract.test.js",
|
|
"test:key-manager": "node scripts/keyManagerReleaseContract.test.js",
|
|
"test:provider-poll-limiter": "node scripts/providerPollLimiterContract.test.js",
|
|
"test": "npm run test:community-routes && npm run test:enterprise-video-pricing && npm run test:key-manager && npm run test:provider-poll-limiter"
|
|
},
|
|
"dependencies": {
|
|
"alipay-sdk": "^4.14.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"busboy": "^1.6.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.21.0",
|
|
"express-rate-limit": "^8.4.1",
|
|
"helmet": "^8.2.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"mammoth": "^1.12.0",
|
|
"nodemailer": "^8.0.10",
|
|
"pg": "^8.13.0",
|
|
"wechatpay-node-v3": "^2.2.1"
|
|
}
|
|
}
|