-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.52 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.52 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
{
"name": "@sylphx/mcp-server-sdk",
"version": "2.1.1",
"description": "Pure functional MCP server SDK for Node.js and Bun - type-safe, high performance",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "bunup",
"check": "biome check .",
"check:fix": "biome check --write .",
"test": "bun test",
"bench": "bun run bench/index.ts",
"prepack": "bun run build",
"prepublishOnly": "bunx @sylphx/doctor prepublish",
"lint": "biome check .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@sylphx/gust": "0.1.13",
"@sylphx/gust-core": "^0.1.9",
"@sylphx/vex": "^0.1.11",
"@sylphx/vex-json-schema": "^0.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@modelcontextprotocol/conformance": "^0.1.7",
"@modelcontextprotocol/sdk": "^1.24.3",
"@sylphx/biome-config": "^0.4.0",
"@sylphx/bump": "^0.13.2",
"@sylphx/doctor": "^1.24.0",
"@sylphx/tsconfig": "^0.3.0",
"@types/bun": "^1.3.3",
"bunup": "^0.16.10",
"lefthook": "^2.0.4",
"mitata": "^1.0.34",
"typescript": "^5.9.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SylphxAI/mcp-server-sdk"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"llm",
"bun",
"nodejs"
],
"author": "sylphx",
"license": "MIT"
}