-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 921 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 921 Bytes
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
{
"name": "@splits/splits-cli",
"version": "0.2.9",
"description": "CLI and MCP server for the Splits platform",
"type": "module",
"bin": {
"splits": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc",
"prepublishOnly": "pnpm build",
"release": "npm version patch && pnpm publish --access public"
},
"dependencies": {
"incur": "^0.3.13",
"viem": "^2.48.2"
},
"pnpm": {
"overrides": {
"@modelcontextprotocol/sdk": "1.27.1"
}
},
"homepage": "https://splits.org",
"repository": {
"type": "git",
"url": "git+https://github.com/0xSplits/splits-cli.git"
},
"bugs": {
"url": "https://github.com/0xSplits/splits-cli/issues"
},
"keywords": [
"splits",
"CLI",
"MCP"
],
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "latest"
}
}