-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.51 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.51 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
{
"name": "@agentset/mcp",
"packageManager": "pnpm@9.15.4",
"repository": {
"type": "git",
"url": "https://github.com/agentset-ai/mcp-server"
},
"keywords": [
"mcp",
"model-context-protocol",
"agentset",
"knowledge-base",
"retrieval",
"ai",
"claude",
"anthropic"
],
"license": "MIT",
"version": "1.3.0",
"type": "module",
"main": "./dist/index.js",
"bin": {
"agentset-mcp-server": "dist/index.js"
},
"files": [
"dist/**/*",
"package.json",
"CHANGELOG.md"
],
"engines": {
"node": ">=18.17.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint \"src/**/*.ts*\"",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"inspect": "pnpm dlx dotenv-cli -- pnpm dlx @modelcontextprotocol/inspector node dist/index.js",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.3",
"agentset": "^1.3.0",
"commander": "^13.1.0",
"node-fetch": "^3.3.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@eslint/compat": "^1.2.5",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/node": "^22.13.14",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.4.2",
"tsup": "^8.0.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
}
}