-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.74 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
67
68
{
"name": "@requestnetwork/currency",
"version": "0.29.0",
"publishConfig": {
"access": "public"
},
"description": "Currency tools for Request Network packages.",
"keywords": [
"requestnetwork",
"currency",
"utils"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/currency#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",
"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",
"add-erc20": "ts-node scripts/addErc20.ts"
},
"dependencies": {
"@metamask/contract-metadata": "1.31.0",
"@mysten/sui": "1.45.0",
"@requestnetwork/types": "0.55.0",
"@requestnetwork/utils": "0.55.0",
"@ton/core": "0.61.0",
"@ton/crypto": "3.3.0",
"multicoin-address-validator": "0.5.15",
"node-dijkstra": "2.5.0",
"starknet": "7.6.4",
"tslib": "2.8.1"
},
"devDependencies": {
"@types/jest": "29.5.6",
"@types/multicoin-address-validator": "0.5.0",
"@types/node-dijkstra": "2.5.2",
"ethers": "5.7.2",
"jest": "29.5.0",
"jest-junit": "16.0.0",
"source-map-support": "0.5.19",
"ts-jest": "29.3.2",
"ts-node": "10.9.1",
"typescript": "5.8.3"
}
}