-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.69 KB
/
package.json
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
{
"name": "@federationwtf/botswarm",
"version": "3.0.26",
"description": "A typesafe library for scheduling onchain transactions",
"type": "module",
"types": "src/index.d.ts",
"bin": "./src/bin/generateSigner.js",
"scripts": {
"build": "tsc && npm run fix-bug",
"publish": "cd ./dist && npm publish --access public",
"test": "vitest src",
"fix-bug": "replace 'viem/node_modules/abitype' 'abitype' dist/src/BotSwarm.d.ts dist/src/lib/ethereum/index.d.ts"
},
"exports": {
".": {
"default": "./src/index.js",
"types": "./src/index.d.ts"
},
"./contracts": {
"default": "./src/lib/ethereum/contracts/index.js",
"types": "./src/lib/ethereum/contracts/index.d.ts"
},
"./channels": {
"default": "./src/lib/farcaster/channels/index.js",
"types": "./src/lib/farcaster/channels/index.d.ts"
}
},
"typesVersions": {
"*": {
"contracts": [
"./src/lib/ethereum/contracts/index.d.ts"
],
"channels": [
"./src/lib/farcaster/channels/index.d.ts"
]
}
},
"dependencies": {
"@farcaster/hub-nodejs": "^0.8.4",
"@noble/ed25519": "^2.0.0",
"@standard-crypto/farcaster-js": "^5.6.0",
"abitype": "^0.8.11",
"dotenv": "^16.1.4",
"ethers": "^6.7.1",
"figlet": "^1.6.0",
"inquirer": "^9.2.11",
"kleur": "^4.1.5",
"nanospinner": "^1.1.0",
"qrcode-terminal": "^0.12.0",
"replace": "^1.2.2",
"superjson": "^1.13.3",
"typescript": "^5.1.3",
"viem": "^2.3.1"
},
"devDependencies": {
"@types/figlet": "^1.5.6",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.3.1",
"@types/qrcode-terminal": "^0.12.0",
"vitest": "^0.32.2"
}
}