-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
41 lines (41 loc) · 957 Bytes
/
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
{
"name": "@acala-network/bodhi",
"version": "2.9.5",
"repository": "[email protected]:AcalaNetwork/bodhi.js.git",
"author": "Acala Developers <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"clean": "rm -rf tsconfig.tsbuildinfo .nyc_output coverage/ lib/",
"test": "vitest",
"test:coverage": "vitest --run --coverage"
},
"peerDependencies": {
"@polkadot/api": "^14.3.1"
},
"dependencies": {
"@acala-network/eth-providers": "workspace:*",
"@types/bn.js": "~5.1.0",
"bn.js": "~5.2.0",
"ethers": "~5.7.0"
},
"files": [
"lib"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./*": {
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
},
"./package.json": "./package.json"
},
"devDependencies": {
"vitest": "^2.1.1"
}
}