@conquest-eth/tools 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +0 -0
- package/package.json +80 -82
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,83 +1,81 @@
|
|
|
1
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
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
}
|
|
83
|
-
}
|
|
2
|
+
"name": "@conquest-eth/tools",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Tools for Conquest.eth, including mcp server",
|
|
5
|
+
"author": "Ronan Sandford",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"mcp",
|
|
9
|
+
"ethereum",
|
|
10
|
+
"tools",
|
|
11
|
+
"cli",
|
|
12
|
+
"conquest.eth"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/wighawag/tools-conquest-eth-v0.git"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://github.com/wighawag/tools-conquest-eth-v0#readme",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/wighawag/tools-conquest-eth-v0/issues"
|
|
21
|
+
},
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"access": "public"
|
|
24
|
+
},
|
|
25
|
+
"type": "module",
|
|
26
|
+
"main": "./dist/index.js",
|
|
27
|
+
"module": "./dist/index.js",
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"exports": {
|
|
30
|
+
".": {
|
|
31
|
+
"types": "./dist/index.d.ts",
|
|
32
|
+
"import": "./dist/index.js"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"bin": {
|
|
36
|
+
"conquest": "dist/cli.js"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist",
|
|
40
|
+
"src"
|
|
41
|
+
],
|
|
42
|
+
"sideEffects": false,
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@ethersproject/signing-key": "5.7.0",
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.25.3",
|
|
46
|
+
"@noble/hashes": "^1.6.1",
|
|
47
|
+
"@noble/secp256k1": "^2.1.0",
|
|
48
|
+
"commander": "^14.0.3",
|
|
49
|
+
"eip-1193": "^0.6.5",
|
|
50
|
+
"ldenv": "^0.3.16",
|
|
51
|
+
"remote-procedure-call": "^0.1.1",
|
|
52
|
+
"tools-ethereum": "^0.0.7",
|
|
53
|
+
"viem": "^2.45.1",
|
|
54
|
+
"zod": "^4.3.6",
|
|
55
|
+
"conquest-eth-v0-contracts": "0.0.1"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@modelcontextprotocol/inspector": "^0.19.0",
|
|
59
|
+
"@rocketh/node": "^0.18.2",
|
|
60
|
+
"@types/node": "^25.2.0",
|
|
61
|
+
"as-soon": "^0.1.5",
|
|
62
|
+
"prettier": "^3.8.0",
|
|
63
|
+
"prool": "^0.2.2",
|
|
64
|
+
"reloaderoo": "^1.1.5",
|
|
65
|
+
"tsx": "^4.21.0",
|
|
66
|
+
"typescript": "^5.3.3",
|
|
67
|
+
"vitest": "^4.0.18"
|
|
68
|
+
},
|
|
69
|
+
"scripts": {
|
|
70
|
+
"release": "pnpm prepublishOnly && git push --all && pnpm changeset publish && git push --tags",
|
|
71
|
+
"format": "prettier --write .",
|
|
72
|
+
"format:check": "prettier --check .",
|
|
73
|
+
"build": "tsc",
|
|
74
|
+
"dev": "as-soon -w src pnpm build",
|
|
75
|
+
"test": "vitest run",
|
|
76
|
+
"test:watch": "vitest",
|
|
77
|
+
"mcp:inspector": "mcp-inspector",
|
|
78
|
+
"reloaderoo": "reloaderoo",
|
|
79
|
+
"start": "reloaderoo proxy --log-level debug -- node ./dist/cli.js --rpc-url http://localhost:8545 --game-contract 0x322813fd9a801c5507c9de605d63cea4f2ce6c44 mcp --ethereum"
|
|
80
|
+
}
|
|
81
|
+
}
|