-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.82 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.82 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "leanmcp",
"private": true,
"version": "0.1.0",
"description": "LeanMCP SDK: Efficient, modular TypeScript toolkit for production MCP servers,with built-in auth, multi-tenancy, and human-in-the-loop.",
"packageManager": "npm@9.0.0",
"files": [
"README.md",
"LICENSE"
],
"workspaces": [
"packages/*",
"examples/*",
"!examples/github-roast",
"!examples/gpt-slack",
"!examples/my-app"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"install:all": "npm install && npm run build",
"format": "prettier --write \"packages/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"packages/**/*.{ts,tsx,js,jsx,json,md}\"",
"prepare": "husky"
},
"devDependencies": {
"@swc/core": "^1.15.2",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"husky": "9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"prettier": "3.8.1",
"ts-jest": "^29.1.0",
"tsup": "^8.0.1",
"turbo": "^2.7.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"typescript",
"sdk",
"ai",
"chatgpt",
"claude",
"auth",
"production",
"lightweight",
"opensource",
"server",
"api",
"framework"
],
"repository": {
"type": "git",
"url": "https://github.com/LeanMCP/leanmcp-sdk.git"
},
"homepage": "https://leanmcp.com",
"bugs": {
"url": "https://github.com/LeanMCP/leanmcp-sdk/issues"
},
"lint-staged": {
"packages/**/*.{ts,tsx,js,jsx,json,md}": [
"prettier --write"
]
}
}