-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "@requestnetwork/utils",
"version": "0.45.1",
"publishConfig": {
"access": "public"
},
"description": "General tools for Request Network packages.",
"keywords": [
"requestnetwork",
"utils"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/utils#readme",
"bugs": {
"url": "https://github.com/RequestNetwork/requestNetwork/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist"
],
"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",
"test": "jest",
"test:watch": "yarn test --watch"
},
"dependencies": {
"@requestnetwork/types": "0.45.1",
"@toruslabs/eccrypto": "4.0.0",
"ethers": "5.7.2",
"secp256k1": "4.0.4",
"tslib": "2.5.0"
},
"devDependencies": {
"@types/jest": "29.5.6",
"jest": "29.5.0",
"jest-junit": "16.0.0",
"source-map-support": "0.5.19",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.1.3"
},
"gitHead": "6155223cfce769e48ccae480c510b35b4f54b4d0"
}