coreflow/package.json

102 lines
2.7 KiB
JSON
Raw Normal View History

2024-05-08 22:05:16 +00:00
{
2024-05-08 22:11:13 +00:00
"name": "@serve.zone/coreflow",
2024-11-18 14:21:49 +00:00
"version": "1.0.133",
"description": "A comprehensive tool for managing Docker-based applications and services, enabling efficient scaling, network management, and integration with cloud services.",
2024-05-08 22:05:16 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"scripts": {
"test": "(tstest test/ --web)",
"start": "(node --max_old_space_size=500 ./cli.js)",
"startTs": "(node cli.ts.js)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
},
"bin": {
"coreflow": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/pushrocks/coreflow.git"
},
"keywords": [
"Docker",
"Service scaling",
"Networking",
"Server management",
"Continuous deployment",
"Microservices",
"Load balancing",
"Task scheduling",
"Web services",
"Container management",
"Cluster configuration",
"DevOps",
"Cloud integration",
"Security",
"High availability",
"Multi-cloud",
2024-05-08 22:05:16 +00:00
"Service discovery",
"Distributed systems",
"Docker Swarm",
"Traffic management",
"Service provisioning",
"Monitoring",
"Observability",
"TypeScript"
2024-05-08 22:05:16 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/coreflow/issues"
},
"homepage": "https://gitlab.com/pushrocks/coreflow#readme",
"devDependencies": {
"@git.zone/tsbuild": "^2.2.0",
"@git.zone/tsrun": "^1.3.3",
2024-05-08 22:11:13 +00:00
"@git.zone/tstest": "^1.0.90",
"@git.zone/tswatch": "^2.0.25",
"@push.rocks/tapbundle": "^5.5.0"
2024-05-08 22:05:16 +00:00
},
"dependencies": {
"@api.global/typedrequest": "^3.1.10",
2024-05-08 22:11:13 +00:00
"@api.global/typedsocket": "^3.0.1",
"@apiclient.xyz/docker": "^1.2.7",
2024-05-08 22:05:16 +00:00
"@push.rocks/early": "^4.0.3",
"@push.rocks/lik": "^6.1.0",
2024-05-08 22:05:16 +00:00
"@push.rocks/projectinfo": "^5.0.1",
2024-05-08 22:11:13 +00:00
"@push.rocks/qenv": "^6.0.5",
"@push.rocks/smartcli": "^4.0.11",
2024-05-08 22:05:16 +00:00
"@push.rocks/smartdelay": "^3.0.1",
"@push.rocks/smartlog": "^3.0.7",
2024-05-08 22:05:16 +00:00
"@push.rocks/smartnetwork": "3.0.2",
2024-05-08 22:11:13 +00:00
"@push.rocks/smartpath": "^5.0.18",
"@push.rocks/smartpromise": "^4.0.4",
"@push.rocks/smartrequest": "^2.0.23",
2024-05-08 22:05:16 +00:00
"@push.rocks/smartrx": "^3.0.2",
"@push.rocks/smartstate": "^2.0.19",
2024-05-08 22:11:13 +00:00
"@push.rocks/smartstring": "^4.0.15",
2024-05-08 22:05:16 +00:00
"@push.rocks/taskbuffer": "^3.0.10",
"@serve.zone/api": "^4.3.11",
"@serve.zone/interfaces": "^4.3.11",
"@tsclass/tsclass": "^4.1.2",
"@types/node": "22.9.0"
2024-05-08 22:05:16 +00:00
},
"private": true,
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
]
2024-11-18 14:21:49 +00:00
}