-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 942 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 942 Bytes
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
{
"name": "token-tool-api-example",
"version": "2.0.0",
"type": "module",
"author": "<developers@bitbond.com>",
"license": "MIT",
"engines": {
"node": ">=22.11.0",
"npm": ">=10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/bs58": "^5.0.0",
"@types/node": "^22.10.1",
"eslint": "^9.39.1",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9",
"typescript-eslint": "^8.47.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint '*/**/*.{js,ts}'",
"tsc": "tsc",
"deps:check": "npx npm-check-updates@latest --root --mergeConfig",
"deps:update": "npx npm-check-updates@latest -u --root --mergeConfig"
},
"dependencies": {
"@fireblocks/fireblocks-web3-provider": "^1.3.18",
"@fireblocks/ts-sdk": "^13.0.0",
"@solana/web3.js": "^1.98.4",
"bs58": "^6.0.0",
"ethers": "^6.13.4"
}
}