-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
123 lines (123 loc) · 3.86 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@elastosfoundation/wallet-js-sdk",
"version": "1.0.9",
"description": "Elastos Wallet Javascript SDK",
"scripts": {
"prepublishOnly": "npm run build",
"lint": "./node_modules/.bin/eslint -c ./.eslintrc.js './src/**/*.ts'",
"build": "npm run build:release && npm run lint",
"build:debug": "npm run clean && npm run types && rollup -c",
"build:release": "npm run clean && npm run types && rollup -c --environment prodbuild",
"dev": "rollup -c -w",
"clean": "rm -rf dist/ typings/ generated/",
"types": "npm run clean && tsc --emitDeclarationOnly --outDir typings/ --project tsconfig.types.json",
"tsc:build": "rollup -c",
"tsc:w": "tsc -w"
},
"exports": {
"node": "./dist/wallet.js",
"browser": {
"import": "./dist/es/wallet.browser.js"
}
},
"main": "./dist/wallet.js",
"module": "./dist/es/wallet.js",
"browser": {
"./dist/wallet.js": "./dist/wallet.browser.js",
"./dist/es/wallet.js": "./dist/es/wallet.browser.js"
},
"typings": "typings/index.d.ts",
"dependencies": {
"@ethersproject/abstract-provider": "^5.6.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/transactions": "^5.6.0",
"assert": "2.0.0",
"bignumber.js": "^9.0.2",
"bip32": "2.0.6",
"bip39": "3.0.4",
"bn.js": "^5.2.0",
"bs58": "4.0.1",
"bs58check": "2.1.2",
"buffer": "5.7.1",
"create-hash": "1.2.0",
"crypto-browserify": "3.12.0",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.1",
"elliptic": "^6.5.4",
"ethers": "^5.6.5",
"events": "3.3.0",
"js-sha3": "^0.8.0",
"random-int": "^3.0.0",
"string_decoder": "1.3.0",
"util": "0.12.4"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/plugin-proposal-decorators": "7.16.4",
"@babel/preset-env": "7.16.4",
"@babel/preset-typescript": "7.16.0",
"@rollup/plugin-alias": "3.1.8",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "19.0.2",
"@rollup/plugin-eslint": "8.0.1",
"@rollup/plugin-inject": "4.0.3",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.0.6",
"@rollup/plugin-replace": "2.4.2",
"@rollup/plugin-typescript": "8.3.0",
"@types/bn.js": "5.1.0",
"@types/jest": "^26.0.23",
"@types/node": "14.17.34",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"eslint": "8.9.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-environment-node": "^26.6.2",
"jest-html-reporter": "^3.4.0",
"jest-lite": "^1.0.0-alpha.4",
"path-browserify": "1.0.1",
"rollup": "2.67.2",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-copy-assets": "2.0.3",
"rollup-plugin-file-content-replace": "file:./build-plugins/rollup-plugin-file-content-replace",
"rollup-plugin-multi-input": "1.3.1",
"rollup-plugin-natives": "0.7.5",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-polyfill-node": "0.6.2",
"rollup-plugin-size": "^0.2.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-visualizer": "5.5.2",
"ts-jest": "26.5.6",
"ts-node": "9.1.1",
"tslib": "2.3.1",
"typescript": "4.5.5"
},
"engines": {
"node": ">=14.0.0"
},
"browserslist": "> 0.25%, not dead",
"files": [
"dist",
"dist.esm",
"typings"
],
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elastos/Elastos.ELA.Wallet.JS.SDK.git"
},
"author": "Elastos Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/elastos/Elastos.ELA.Wallet.JS.SDK/issues"
},
"homepage": "https://github.com/elastos/Elastos.ELA.Wallet.JS.SDK#readme"
}