-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
39
40
41
42
43
44
45
46
47
48
{
"name": "@donkeycode/leexi-mcp",
"version": "0.4.16",
"description": "DonkeyCode MCP server for Leexi (AI Notetaker) \u2014 exposes calls, transcripts, and processing state.",
"license": "MIT",
"author": "DonkeyCode <hello@donkeycode.com>",
"type": "module",
"main": "dist/index.js",
"bin": {
"leexi-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/bundle.mjs",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check src tests",
"format": "biome format --write src tests",
"typecheck": "tsc --noEmit",
"inspect": "tsx scripts/inspect.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"undici": "^6.19.0",
"zod": "^3.23.0",
"zod-to-json-schema": "^3.23.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.0",
"@types/node": "^20.14.0",
"@vitest/coverage-v8": "^2.1.9",
"esbuild": "^0.28.0",
"msw": "^2.3.0",
"tsx": "^4.15.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}