-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 KB
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
{
"name": "lark-cli-mcp-wrapper",
"version": "1.3.1",
"description": "MCP server wrapping lark-cli as stdio transport",
"type": "module",
"main": "dist/index.js",
"bin": {
"lark-cli-mcp-wrapper": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node -e \"const fs=require('fs');fs.copyFileSync('src/generated-tools.json','dist/generated-tools.json');fs.copyFileSync('src/tier1.json','dist/tier1.json')\"",
"dev": "tsx src/index.ts",
"generate-tools": "tsx scripts/generate-tools.ts",
"test": "vitest run",
"prepare": "npm run generate-tools && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddpie/lark-cli-mcp-wrapper.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"execa": "^9.5.2"
},
"devDependencies": {
"@types/node": "^22.15.17",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=18"
},
"license": "MIT"
}