86 lines
2.4 KiB
JSON
86 lines
2.4 KiB
JSON
{
|
|
"name": "midstream-cli",
|
|
"version": "0.1.0",
|
|
"description": "MidStream - Real-time LLM streaming with Lean Agentic Learning",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"midstream": "./dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build:wasm && npm run build:ts",
|
|
"build:wasm": "cd ../wasm-bindings && wasm-pack build --target nodejs --out-dir ../npm/wasm",
|
|
"build:ts": "tsc",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"lint": "eslint src --ext .ts",
|
|
"format": "prettier --write 'src/**/*.ts'",
|
|
"prepublishOnly": "npm run build && npm test",
|
|
"mcp": "node dist/mcp-server.js",
|
|
"demo": "ts-node examples/dashboard-demo.ts",
|
|
"demo:text": "ts-node examples/dashboard-demo.ts --mode text",
|
|
"demo:audio": "ts-node examples/dashboard-demo.ts --mode audio",
|
|
"demo:video": "ts-node examples/dashboard-demo.ts --mode video",
|
|
"demo:openai": "ts-node examples/dashboard-demo.ts --mode all --openai",
|
|
"quic-demo": "ts-node examples/quic-demo.ts",
|
|
"quic-demo:server": "ts-node examples/quic-demo.ts server",
|
|
"quic-demo:client": "ts-node examples/quic-demo.ts client",
|
|
"quic-demo:multistream": "ts-node examples/quic-demo.ts multistream",
|
|
"quic-demo:benchmark": "ts-node examples/quic-demo.ts benchmark"
|
|
},
|
|
"keywords": [
|
|
"llm",
|
|
"streaming",
|
|
"agent",
|
|
"mcp",
|
|
"temporal",
|
|
"meta-learning",
|
|
"wasm",
|
|
"websocket",
|
|
"sse"
|
|
],
|
|
"author": "MidStream Team",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ruvnet/midstream"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^0.5.0",
|
|
"commander": "^11.1.0",
|
|
"ws": "^8.16.0",
|
|
"eventsource": "^2.0.2",
|
|
"chalk": "^5.3.0",
|
|
"ora": "^7.0.1",
|
|
"inquirer": "^9.2.12",
|
|
"axios": "^1.6.5",
|
|
"yaml": "^2.3.4",
|
|
"dotenv": "^16.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.6",
|
|
"@types/ws": "^8.5.10",
|
|
"@types/eventsource": "^1.1.15",
|
|
"@types/inquirer": "^9.0.7",
|
|
"@types/jest": "^29.5.11",
|
|
"@typescript-eslint/eslint-plugin": "^6.17.0",
|
|
"@typescript-eslint/parser": "^6.17.0",
|
|
"eslint": "^8.56.0",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3",
|
|
"prettier": "^3.1.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"wasm",
|
|
"README.md",
|
|
"LICENSE"
|
|
]
|
|
}
|