UNPKG

@k1ssh/qbot

Version:

QBot SDK is a set of APIs for creating and managing microservices, and Kubernetes deployments. This is the core package for QBot AI.

88 lines (87 loc) 2.06 kB
{ "name": "@k1ssh/qbot", "description": "QBot SDK is a set of APIs for creating and managing microservices, and Kubernetes deployments. This is the core package for QBot AI.", "version": "0.1.0", "type": "module", "contributors": [ { "name": "Adrian Escutia", "url": "https://escutia.me/adrian" }, { "name": "La Rebelion Labs", "url": "https://rebelion.la" } ], "homepage": "https://k1s.sh/qbot", "repository": { "type": "git", "url": "https://github.com/la-rebelion/qbot-sdk" }, "bin": { "qbot": "./dist/index.js" }, "keywords": [ "mcp", "modelcontextprotocol", "agentic", "ai", "qbot", "microservices", "kubernetes", "la-rebelion" ], "engines": { "node": ">=20" }, "license": "MIT", "main": "./dist/index.js", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "typesVersions": { "*": { "*": [ "./dist/*" ] } }, "files": [ "dist", "README.md", "package.json", "qbot-components.png", "qbot-components-overview.png", "LICENSE" ], "scripts": { "build": "tsc --outDir dist && shx chmod +x dist/index.js", "prepare": "npm run build", "obfuscate": "tsc --outDir build && shx chmod +x build/index.js && npx javascript-obfuscator build --output dist && cp build/*.d.ts dist", "watch": "tsc --watch", "test": "jest", "pack": "npm run build && npm pack", "format": "prettier --write \"**/*.ts\" \"**/*.ts\"", "version:patch": "npm version patch", "version:minor": "npm version minor", "version:major": "npm version major", "publish:npm": "npm run build && npm publish --access public" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^20.11.24", "jest": "^29.7.0", "prettier": "^3.4.2", "ts-jest": "^29.2.5", "typescript": "^5.3.3" }, "peerDependencies": { "typescript": "^5.0.0" }, "dependencies": { "shx": "^0.3.4" } }