-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.93 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.93 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
{
"name": "@goplausible/algorand-mcp",
"version": "4.2.3",
"publishConfig": {
"access": "public"
},
"description": "Algorand Model Context Protocol Local Implementation",
"type": "module",
"scripts": {
"build": "tsc && cp -r src/resources/knowledge/taxonomy src/resources/knowledge/taxonomy-categories dist/resources/knowledge/ && chmod +x dist/index.js",
"clean": "rm -rf dist",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:e2e": "NODE_OPTIONS='--experimental-vm-modules' jest --config tests/jest.config.e2e.js",
"test:all": "npm test && npm run test:e2e",
"typecheck": "tsc --noEmit",
"tag": "git tag v$npm_package_version && git push origin v$npm_package_version",
"retag": "git tag -f v$npm_package_version && git push -f origin v$npm_package_version",
"publish:npm": "npm publish",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"algorand",
"mcp",
"blockchain",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"bin": {
"algorand-mcp": "./dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md"
],
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/jest": "29.5.12",
"@types/node": "^20.0.0",
"@types/qrcode": "^1.5.5",
"@types/sql.js": "^1.4.9",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"typescript": "^5.0.0"
},
"dependencies": {
"@alpha-arcade/sdk": "latest",
"@cf-wasm/photon": "^0.1.31",
"@juit/qrcode": "^1.0.59",
"@modelcontextprotocol/sdk": "^1.27.1",
"@napi-rs/keyring": "^1.2.0",
"@noble/curves": "^2.0.1",
"@tinymanorg/tinyman-js-sdk": "^5.1.2",
"@txnlab/haystack-router": "^2.0.5",
"algo-msgpack-with-bigint": "^2.1.1",
"algosdk": "^3.5.2",
"hi-base32": "^0.5.1",
"just-pick": "^4.2.0",
"qrcode": "^1.5.4",
"sql.js": "^1.14.0",
"zod": "^3.25.61"
}
}