-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.67 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "znn-ts-sdk",
"version": "0.1.3",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "npm install -D webpack-cli && npm install cipher-base && npm install rpc-websockets && npm run patch",
"watch": "tsc -w",
"clean": "rimraf dist/",
"copy-patches": "cpy patches/* dist/patches/",
"patch": "npm run copy-patches && npx patch-package",
"copy-wasm": "cpy ./znn-pow-links.wasm ./../../../../dist/lib/src/pow/compiler --cwd=lib/src/pow/compiler --parents",
"start:dev": "webpack --mode=development --watch --progress",
"build:dev": "npx webpack --mode=development",
"build:prod": "npx webpack --mode=production",
"afterinstallation": "npm run build:prod && npm run copy-wasm && npm run patch"
},
"keywords": [
"zenon",
"blockchain",
"typescript",
"sdk"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/argon2-browser": "^1.18.1",
"@types/create-hmac": "^1.1.0",
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.0.3",
"@types/node-localstorage": "^1.3.0",
"@types/utf8": "^3.0.1",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"cipher-base": "^1.0.4",
"copyfiles": "^2.4.1",
"cpy-cli": "^4.2.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"patch-package": "^6.4.7",
"path": "^0.12.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rpc-websockets": "^7.11.2",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"wasm2js": "^0.2.0",
"webpack-cli": "^4.10.0",
"ws": "^8.4.0"
},
"browser": {
"crypto": false,
"stream": true
},
"dependencies": {
"@noble/ed25519": "^1.6.0",
"@scure/bip39": "^1.0.0",
"@types/bip39": "^3.0.0",
"argon2": "^0.28.7",
"argon2-browser": "^1.18.0",
"base64-loader": "^1.0.0",
"bech32": "^2.0.0",
"bigint-buffer": "^1.1.5",
"bip39": "3.0.4",
"bip39-ts": "^1.0.6",
"create-hmac": "^1.1.7",
"crypto": "^1.0.1",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1",
"ed25519-hd-key": "^1.2.0",
"ethers": "^5.5.2",
"node-localstorage": "^2.2.1",
"postinstall": "^0.8.0",
"readable-stream": "^3.6.0",
"sha3": "^2.1.4",
"stream": "0.0.2",
"tweetnacl": "^1.0.3",
"utf8": "^3.0.0",
"webpack": "^5.73.0"
}
}