-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.11 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.11 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
{
"name": "icblast",
"version": "4.2.0",
"description": "Blast: Explore Internet Computer canisters from your terminal.",
"type": "module",
"sideEffects": false,
"bin": {
"blast": "bin/blast.js",
"icblast": "bin/blast.js"
},
"exports": {
".": {
"import": "./lib/index.js",
"types": "./types/index.d.ts"
},
"./mcp": {
"import": "./lib/mcp_server.js",
"types": "./types/mcp_server.d.ts"
}
},
"types": "types/index.d.ts",
"files": [
"bin",
"lib",
"didc_wasm_pkg",
"README.md",
"types"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node bin/blast.js",
"pack:local": "npm pack",
"test": "vitest run --reporter=basic"
},
"devDependencies": {
"vitest": "^1.6.0"
},
"dependencies": {
"@dfinity/agent": "^3.2.3",
"@dfinity/candid": "^3.2.3",
"@dfinity/identity": "^3.2.3",
"@dfinity/principal": "^3.2.3",
"@dfinity/ledger-icrc": "^4.1.0",
"@dfinity/utils": "^3.2.0",
"ajv": "^8.12.0",
"picocolors": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.2.0",
"zod": "^3.23.8"
}
}