-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.43 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
60
61
62
63
64
65
66
67
68
69
{
"name": "@zilpay/zilpay-web3",
"version": "0.0.1",
"repository": "git@github.com:zilpay/zilpay-web3.git",
"author": "Rinat <lich666black@gmail.com>",
"type": "module",
"license": "MIT",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"serve": "http-server ./"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/big.js": "^6.2.2",
"@types/bn.js": "^5.1.5",
"@types/bun": "latest",
"http-server": "^14.1.1",
"rollup": "^4.18.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"browser": {
"crypto": false
},
"keywords": [
"zilliqa",
"web3",
"zilpay",
"blockchain",
"bitcoin",
"bytes",
"cryptography"
],
"files": [
"dist/*",
"config/*",
"lib/*",
"types/*",
"index.js",
"index.ts"
],
"dependencies": {
"big.js": "^6.2.1",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"long": "^5.2.3"
}
}