-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.66 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.66 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": "@iqai/mcp-near",
"version": "0.1.2",
"description": "Mcp server for Near",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-near": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/index.js",
"prepare": "husky",
"watch": "tsc --watch",
"test": "vitest run",
"start": "node dist/index.js",
"publish-packages": "pnpm run build && changeset publish",
"format": "biome format ./src --write",
"lint": "biome check ./src"
},
"packageManager": "pnpm@10.7.1",
"keywords": [
"mcp",
"Near",
"iqagents"
],
"author": "IQAI",
"repository": {
"type": "git",
"url": "git+https://github.com/IQAIcom/mcp-near.git"
},
"license": "ISC",
"homepage": "https://github.com/IQAIcom/mcp-near#readme",
"bugs": {
"url": "https://github.com/IQAIcom/mcp-near/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"@near-js/client": "^2.0.2",
"dedent": "^1.6.0",
"dotenv": "^17.0.1",
"gql.tada": "^1.8.10",
"graphql-request": "^7.1.2",
"mcps-logger": "^1.0.0",
"near-api-js": "6.0.2",
"node-cron": "^4.1.0",
"ts-node": "^10.9.2",
"viem": "^2.30.6",
"zod": "^3.25.50",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@biomejs/biome": "*",
"@changesets/cli": "^2.29.4",
"@types/node": "^24.0.4",
"@types/node-cron": "^3.0.11",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"shx": "^0.3.4",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --organize-imports-enabled=false --no-errors-on-unmatched"
]
}
}