-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@line/line-bot-mcp-server",
"version": "0.0.1-local",
"description": "MCP server for interacting with your LINE Official Account",
"type": "module",
"engines": {
"node": ">=20"
},
"module": "./dist/index.js",
"bin": {
"line-bot-mcp-server": "./dist/index.js"
},
"files": [
"dist"
],
"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",
"release": "npm run build && npm publish --provenance --access public"
},
"repository": {
"type": "git",
"url": "[email protected]: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",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22",
"prettier": "3.5.3",
"shx": "^0.4.0",
"tsx": "^4.19.3",
"typescript": "^5.6.2"
},
"license": "Apache-2.0",
"packageManager": "[email protected]+sha512.0486e394640d3c1fb3c9d43d49cf92879ff74f8516959c235308f5a8f62e2e19528a65cdc2a3058f587cde71eba3d5b56327c8c33a97e4c4051ca48a10ca2d5f"
}