-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "@verified-network/verified-sdk",
"version": "1.8.6",
"description": "An SDK to develop applications on the Verified Network",
"repository": {
"type": "git",
"url": "git+https://github.com/verified-network/verified-sdk.git"
},
"keywords": [
"digital payments",
"security tokens",
"stablecoins",
"digital assets",
"defi"
],
"author": "Kallol Borah",
"license": "BUSL1.1",
"bugs": {
"url": "https://github.com/verified-network/verified-sdk/issues"
},
"homepage": "https://github.com/verified-network/verified-sdk#readme",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc && npm link",
"publish": "tsc && npm publish",
"test": "mocha 'src/test/**/*.ts' --recursive --timeout 300000 -r ts-node/register"
},
"bin": {
"greet": "./bin/index.bin.js"
},
"dependencies": {
"@biconomy/account": "^4.1.1",
"ethereumjs-tx": "^2.1.2",
"ethers": "^5.7.2",
"tslib": "^2.6.2",
"viem": "^2.12.0"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
}
}