-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "convos-node-sdk",
"version": "1.0.0",
"description": "Convos invite system middleware for XMTP agents",
"license": "MIT",
"author": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"convos-node-sdk": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"lint": "eslint src tests",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@noble/ciphers": "^1.2.1",
"@noble/hashes": "^1.7.1",
"@noble/secp256k1": "^2.2.3",
"@xmtp/agent-sdk": "^2.0.1",
"commander": "^13.1.0",
"long": "^5.0.0",
"pako": "^2.1.0",
"protobufjs": "^7.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.13.1",
"@types/pako": "^2.0.3",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^3.0.5"
}
}