-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.54 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.54 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
{
"name": "@samarth208p/0mcp",
"version": "3.1.0",
"description": "Persistent memory layer for AI coding agents — 0G + ENS + Brain iNFT",
"type": "module",
"main": "./build/src/index.js",
"bin": {
"0mcp": "./build/src/cli.js"
},
"files": [
"build",
"contracts",
"README.md",
"0mcp.png"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"setup": "node --loader ts-node/esm src/cli.ts init",
"cli": "node --loader ts-node/esm src/cli.ts",
"cli:debug": "cross-env DEBUG_CLI=true node --loader ts-node/esm src/cli.ts",
"dev": "node --loader ts-node/esm src/index.ts",
"start": "node build/src/index.js",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"test:manual": "node --loader ts-node/esm test/manual_test.ts",
"test:storage": "node --loader ts-node/esm test/test_storage.ts",
"test:ens": "node --loader ts-node/esm test/test_ens.ts",
"test:wallet": "node --loader ts-node/esm test/test_wallet.ts"
},
"dependencies": {
"@0gfoundation/0g-ts-sdk": "^1.2.6",
"@account-abstraction/contracts": "^0.8.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@openzeppelin/contracts": "^5.6.1",
"ethers": "^6.13.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.0.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}