forked from Motus-DAO/RootAgent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.27 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.27 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
{
"name": "root-agent-sdk",
"version": "0.1.0",
"description": "TypeScript SDK for the Celo ecosystem — onboard humans with wallets, fiat ramps, identity verification, and ERC-8004 AI agents.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./waap": {
"types": "./dist/waap.d.mts",
"import": "./dist/waap.mjs"
},
"./self": {
"types": "./dist/waap.d.mts",
"import": "./dist/waap.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit"
},
"keywords": [
"celo",
"sdk",
"wallet",
"identity",
"ai-agent",
"erc-8004",
"escrow"
],
"license": "MIT",
"dependencies": {
"@celo/contractkit": "^7.0.0",
"@human.tech/waap-sdk": "^1.2.2",
"@selfxyz/core": "^1.0.8",
"@selfxyz/qrcode": "^1.0.11",
"ethers": "^6.13.0",
"viem": "^2.21.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^7.0.0",
"@types/node": "^22.0.0",
"hardhat": "^3.1.11",
"solc": "^0.8.34",
"tsup": "^8.3.0",
"typescript": "^5.6.0"
}
}