60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"name": "@ruvector/burst-scaling",
|
|
"version": "1.0.0",
|
|
"description": "Adaptive burst scaling system for ruvector - handles 10-50x traffic spikes",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"lint": "eslint . --ext .ts",
|
|
"format": "prettier --write \"**/*.ts\"",
|
|
"predictor": "ts-node burst-predictor.ts",
|
|
"scaler": "ts-node reactive-scaler.ts",
|
|
"manager": "ts-node capacity-manager.ts",
|
|
"terraform:init": "cd terraform && terraform init",
|
|
"terraform:plan": "cd terraform && terraform plan",
|
|
"terraform:apply": "cd terraform && terraform apply",
|
|
"terraform:destroy": "cd terraform && terraform destroy",
|
|
"deploy": "npm run build && npm run terraform:apply"
|
|
},
|
|
"keywords": [
|
|
"ruvector",
|
|
"scaling",
|
|
"auto-scaling",
|
|
"burst",
|
|
"capacity",
|
|
"cloud-run",
|
|
"gcp",
|
|
"predictive-scaling"
|
|
],
|
|
"author": "Ruvector Team",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@google-cloud/monitoring": "^4.0.0",
|
|
"@google-cloud/compute": "^4.0.0",
|
|
"@google-cloud/cloud-sql-connector": "^1.3.0",
|
|
"@google-cloud/redis": "^3.0.0",
|
|
"@google-cloud/logging": "^11.0.0",
|
|
"node-cron": "^3.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"@types/node-cron": "^3.0.11",
|
|
"@typescript-eslint/eslint-plugin": "^6.13.0",
|
|
"@typescript-eslint/parser": "^6.13.0",
|
|
"eslint": "^8.55.0",
|
|
"jest": "^29.7.0",
|
|
"@types/jest": "^29.5.10",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3",
|
|
"prettier": "^3.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
}
|
|
}
|