package.json•1.16 kB
{
"name": "@line/line-bot-mcp-server",
"version": "0.0.1",
"description": "MCP server for interacting with your LINE Official Account",
"type": "module",
"engines": {
"node": ">=20"
},
"module": "./dist/index.js",
"files": [
"dist"
],
"main": "src/index.ts",
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prettier": "prettier \"src/**/*.ts\"",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- -l",
"clean": "rm -rf dist/*",
"prebuild": "npm run format:check && npm run clean",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git@github.com:line/line-bot-mcp-server.git"
},
"keywords": [
"line",
"bot",
"mcp"
],
"homepage": "https://github.com/line/line-bot-mcp-server",
"bugs": "https://github.com/line/line-bot-mcp-server/issues",
"dependencies": {
"@line/bot-sdk": "^9.8.0",
"@modelcontextprotocol/sdk": "^1.8.0"
},
"devDependencies": {
"@types/node": "^22",
"shx": "^0.4.0",
"tsx": "^4.19.3",
"typescript": "^5.6.2",
"prettier": "3.5.3"
},
"license": "Apache-2.0"
}