-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.82 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
58
59
60
61
62
63
64
65
66
{
"name": "@requestnetwork/toolbox",
"version": "0.20.0",
"private": true,
"description": "Toolbox for Request Network.",
"keywords": [
"requestnetwork",
"toolbox"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/toolbox#readme",
"bugs": {
"url": "https://github.com/RequestNetwork/requestNetwork/issues"
},
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src"
},
"files": [
"dist"
],
"bin": {
"request-toolbox": "dist/cli.js"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"prepare": "yarn run build",
"cli": "cross-env NODE_ENV=development ts-node src/cli.ts",
"chainlinkPath": "yarn -s cli listAggregators",
"currencyHash": "yarn cli currencyHash",
"referenceCalculator": "yarn cli referenceCalculator"
},
"dependencies": {
"@requestnetwork/currency": "0.32.0",
"@requestnetwork/epk-signature": "0.14.0",
"@requestnetwork/ethereum-storage": "0.49.0",
"@requestnetwork/payment-detection": "0.58.0",
"@requestnetwork/request-client.js": "0.63.0",
"@requestnetwork/smart-contracts": "0.52.0",
"@requestnetwork/types": "0.58.0",
"@requestnetwork/utils": "0.58.0",
"ethers": "5.7.2",
"inquirer": "8.2.0",
"tslib": "2.8.1",
"yargs": "17.6.2"
},
"devDependencies": {
"@types/bluebird": "3.5.38",
"@types/inquirer": "8.1.3",
"@types/yargs": "17.0.14",
"cross-env": "7.0.2",
"ts-node": "10.9.1",
"typescript": "5.8.3"
}
}