-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
106 lines (106 loc) · 2.93 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
{
"name": "jcc_wallet",
"version": "4.0.2",
"description": "Toolkit of wallet to manage multiple chains & support multiple keystores for each chain",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"unpkg": "dist/jcc-wallet.min.js",
"files": [
"lib",
"dist"
],
"scripts": {
"prepare": "husky install",
"deploy": "./publish.sh",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "tsc --skipLibCheck",
"test": "npm run test:node && npm run test:browser",
"test:node": "jest --coverage",
"test:browser": "karma start karma.conf.js",
"eslint": "./node_modules/.bin/eslint src",
"compile": "./compile.sh",
"pretty": "pretty-quick --staged",
"analyzer": "cross-env REPORT=true webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JCCDex/jcc_wallet.git"
},
"keywords": [
"jccdex",
"blockchain",
"wallet",
"ethereum",
"jingtum",
"moac",
"call-chain",
"bizain-chain",
"stream-chain",
"swtc-chain",
"keystore"
],
"author": "JCCDex",
"license": "MIT",
"bugs": {
"url": "https://github.com/JCCDex/jcc_wallet/issues"
},
"homepage": "https://github.com/JCCDex/jcc_wallet#readme",
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/eslint-parser": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@types/chai": "^4.3.16",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^9.4.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"globals": "^15.8.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"jest-localstorage-mock": "^2.4.26",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-detect-browsers": "^2.3.3",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.1",
"mocha": "^10.2.0",
"node-polyfill-webpack-plugin": "^4.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"sinon": "^17.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4"
},
"resolutions": {
"@noble/curves": "^1.4.2",
"@noble/hashes": "^1.4.0",
"buffer": "^6.0.3"
},
"dependencies": {
"@scure/bip32": "^1.4.0",
"base-x": "^4.0.0",
"bip39": "^3.0.4",
"bip44-constants": "^123.0.0",
"clone-deep": "^4.0.1",
"ethereum-cryptography": "^2.2.1",
"ethers": "^6.13.1",
"lockr": "^0.8.5"
},
"sideEffects": false,
"packageManager": "yarn@4.0.0-rc.48"
}