@baguskto/saham
Version:
MCP Server untuk data saham Indonesia (IDX) - Implementasi Node.js/TypeScript
82 lines (81 loc) • 1.88 kB
JSON
{
"name": "@baguskto/saham",
"version": "1.0.5",
"description": "MCP Server untuk data saham Indonesia (IDX) - Implementasi Node.js/TypeScript",
"main": "dist/mcp-entry.js",
"bin": {
"baguskto-saham": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "ts-node src/cli.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rimraf dist",
"prepare": "npm run build",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"mcp",
"saham",
"stock",
"indonesia",
"idx",
"finance",
"typescript",
"yahoo-finance",
"model-context-protocol",
"claude",
"ai",
"technical-analysis",
"cli",
"baguskto"
],
"author": "Bagus Kertoto <baguskto@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/baguskto/saham.git"
},
"homepage": "https://github.com/baguskto/saham#readme",
"bugs": {
"url": "https://github.com/baguskto/saham/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"yahoo-finance2": "^2.11.3",
"axios": "^1.6.0",
"cheerio": "^1.0.0-rc.12",
"node-cache": "^5.1.2",
"winston": "^3.11.0",
"commander": "^11.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.0",
"typescript": "^5.3.0",
"rimraf": "^5.0.5"
},
"files": [
"dist/**/*",
"data/**/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}