-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.77 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.77 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
{
"name": "@augmnt-sh/baton",
"version": "0.1.7",
"description": "CLI toolkit and MCP server for the Tempo blockchain",
"type": "module",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"bin": {
"baton": "./dist/bin/baton.js"
},
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js"
},
"./mcp": {
"types": "./dist/mcp-server.d.ts",
"import": "./dist/mcp-server.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/bin/baton.js",
"mcp": "node dist/mcp-server.js",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"tempo",
"blockchain",
"cli",
"mcp",
"model-context-protocol"
],
"author": {
"name": "augmnt",
"url": "https://augmnt.sh"
},
"homepage": "https://github.com/augmnt/baton#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/augmnt/baton.git"
},
"bugs": {
"url": "https://github.com/augmnt/baton/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"dotenv": "^16.4.7",
"prompts": "^2.4.2",
"viem": "^2.23.10",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/prompts": "^2.4.9",
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}