tlnt
Version:
TLNT - HMS-Powered Multi-Agent Platform with Government Agency Analysis, Deep Research, and Enterprise-Ready Deployment. Self-optimizing multi-domain AI agent with continuous learning and enterprise-grade performance monitoring.
118 lines (117 loc) • 2.91 kB
JSON
{
"name": "tlnt",
"version": "3.0.5",
"description": "TLNT - HMS-Powered Multi-Agent Platform with Government Agency Analysis, Deep Research, and Enterprise-Ready Deployment. Self-optimizing multi-domain AI agent with continuous learning and enterprise-grade performance monitoring.",
"type": "module",
"engines": {
"node": ">=18"
},
"bin": {
"tlnt": "./bin/tlnt"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"bin",
"scripts"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node bin/tlnt.js",
"system:start": "npm run build && node dist/cli/boot.js system start",
"system:watch": "npm run build && node dist/cli/boot.js watch start",
"system:status": "npm run build && node dist/cli/boot.js system status",
"tmux": "npm run build && node dist/cli/boot.js tmux",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepare": "echo 'Skipping husky setup'",
"postinstall": "node scripts/tlnt-postinstall.js",
"prepublishOnly": "npm run build",
"tlnt": "tlnt"
},
"keywords": [
"tlnt",
"hms",
"multi-agent",
"collaboration",
"government",
"agency-analysis",
"deep-research",
"cort",
"human-in-the-loop",
"hitl",
"supervision",
"ai",
"agent",
"deals",
"value-contracts",
"watch-mode",
"terminal",
"cli",
"enterprise",
"tmux",
"panel-ui",
"redis",
"messaging",
"monitoring",
"coordination",
"etl",
"workflow-orchestration",
"healthcare",
"compliance",
"ascii-art",
"loading-screen"
],
"author": "HMS-OPM Team",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.9.1",
"@types/ioredis": "^4.28.10",
"axios": "^1.6.2",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fast-glob": "^3.3.2",
"ink": "^4.4.1",
"ink-text-input": "^5.0.1",
"ioredis": "^5.6.1",
"openai": "^4.24.1",
"ora": "^7.0.1",
"react": "^18.2.0",
"rxjs": "^7.8.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}