-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (72 loc) · 2.13 KB
/
package.json
File metadata and controls
73 lines (72 loc) · 2.13 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
{
"name": "@polkadot-agent-kit/sdk",
"version": "2.1.0",
"description": "SDK for Polkadot Agent Kit",
"repository": {
"type": "git",
"url": "git+https://github.com/elasticlabs-org/polkadot-agent-kit.git",
"directory": "packages/sdk"
},
"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",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "vitest run --config ./vitest.config.e2e.ts --sequence.concurrent",
"test:integration:testnet": "vitest run --config ./vitest.config.testnet.ts --sequence.concurrent",
"test:integration:mainnet": "vitest run --config ./vitest.config.mainnet.ts --sequence.concurrent"
},
"dependencies": {
"@langchain/core": "^0.3.40",
"@polkadot-agent-kit/common": "workspace:*",
"@polkadot-agent-kit/core": "workspace:*",
"@polkadot-agent-kit/llm": "workspace:*",
"polkadot-api": "^1.14.1",
"zod": "^3.24.3",
"@modelcontextprotocol/sdk": "^1.6.1",
"zod-to-json-schema": "^3.24.3"
},
"devDependencies": {
"@babel/plugin-syntax-import-attributes": "^7.26.0",
"@babel/preset-env": "^7.26.9",
"@codecov/rollup-plugin": "^1.9.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.2",
"@vitest/coverage-v8": "^3.0.9",
"dotenv": "^16.4.7",
"prettier": "^3.5.3",
"rollup": "^4.37.0",
"rollup-plugin-dts": "^6.2.1",
"@langchain/ollama": "^0.2.2",
"langchain": "^0.1.21",
"@agentic/langchain": "^7.6.9"
},
"peerDependencies": {
"ai": "^4.1.16"
}
}