-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "@polkadot-agent-kit/mcp",
"version": "2.1.0",
"description": "Model Context Protocol server for Polkadot Agent Kit",
"repository": {
"type": "git",
"url": "git+https://github.com/elasticlabs-org/polkadot-agent-kit.git",
"directory": "packages/mcp"
},
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist .turbo node_modules",
"compile": "tsc --noEmit",
"build": "rollup -c",
"lint:check": "eslint src",
"lint": "eslint --fix src",
"format:check": "prettier --check src",
"format:write": "prettier --write src"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"@polkadot-agent-kit/llm": "workspace:*",
"@polkadot-agent-kit/sdk": "workspace:*",
"zod-to-json-schema": "^3.24.3"
},
"devDependencies": {
"@babel/plugin-syntax-import-attributes": "^7.27.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.2",
"rollup": "^4.37.0",
"rollup-plugin-dts": "^6.2.1"
}
}