-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.81 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@theorvane/type-mcp",
"version": "0.3.1",
"description": "Decorator-first TypeScript framework for Model Context Protocol servers",
"repository": {
"type": "git",
"url": "git+https://github.com/Theorvane/type-mcp.git"
},
"homepage": "https://typemcp.theorvane.tech",
"bugs": {
"url": "https://github.com/Theorvane/type-mcp/issues"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./http": {
"import": {
"types": "./dist/http.d.ts",
"default": "./dist/http.js"
},
"require": {
"types": "./dist/http.d.cts",
"default": "./dist/http.cjs"
}
},
"./langchain": {
"import": {
"types": "./dist/langchain.d.ts",
"default": "./dist/langchain.js"
},
"require": {
"types": "./dist/langchain.d.cts",
"default": "./dist/langchain.cjs"
}
},
"./legacy": {
"import": {
"types": "./dist/legacy.d.ts",
"default": "./dist/legacy.js"
},
"require": {
"types": "./dist/legacy.d.cts",
"default": "./dist/legacy.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"packageManager": "npm@10.9.7",
"engines": {
"node": ">=20"
},
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.type-tests.json",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"build": "tsup",
"verify:package": "node scripts/verify-package-exports.mjs",
"verify:consumer": "node scripts/verify-documentation-consumer.mjs && node scripts/verify-legacy-consumer.mjs",
"verify:publish": "npm run build && node scripts/verify-publish-readiness.mjs && npm run verify:consumer",
"example:standalone-http": "npm run build && npm --prefix examples/standalone-http ci && npm --prefix examples/standalone-http run build",
"example:langgraph-tools": "npm run build && npm --prefix examples/langgraph-tools ci && npm --prefix examples/langgraph-tools run build",
"prepublishOnly": "npm run verify:publish",
"clean": "rimraf dist coverage",
"audit:prod": "npm audit --omit=dev --audit-level=low"
},
"dependencies": {
"@hono/node-server": "2.0.12",
"@modelcontextprotocol/sdk": "1.30.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.4",
"@langchain/core": "1.2.3",
"@langchain/langgraph": "1.4.8",
"@types/node": "^22.15.3",
"rimraf": "^6.0.1",
"tsup": "^8.5.1",
"typescript": "^5.8.3",
"vitest": "^4.1.10"
},
"peerDependencies": {
"@langchain/core": "^1.2.3"
},
"peerDependenciesMeta": {
"@langchain/core": {
"optional": true
}
}
}