-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.54 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.54 KB
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
124
125
{
"name": "@web3auth/mpc-core-kit",
"version": "2.3.0",
"description": "MPC CoreKit SDK for web3Auth",
"keywords": [
"web3Auth/mpc-core-kit",
"web3Auth",
"MPC",
"blockchain",
"ethereum"
],
"main": "dist/mpcCoreKit.cjs.js",
"module": "dist/mpcCoreKit.esm.js",
"unpkg": "dist/mpcCoreKit.umd.min.js",
"jsdelivr": "dist/mpcCoreKit.umd.min.js",
"types": "dist/types/index.d.ts",
"author": "Torus Labs",
"homepage": "https://github.com/Web3Auth/mpc-core-kit/tree/master#readme",
"license": "ISC",
"scripts": {
"test": "node --test -r esbuild-register tests/*.spec.ts",
"dev": "torus-scripts start",
"build": "torus-scripts build",
"release": "torus-scripts release",
"lint": "eslint --fix 'src/**/*.ts'",
"prepack": "npm run build",
"pre-commit": "lint-staged --cwd ."
},
"files": [
"dist",
"src"
],
"peerDependencies": {
"@babel/runtime": "^7.x",
"@toruslabs/metadata-helpers": "^5.x"
},
"dependencies": {
"@metamask/swappable-obj-proxy": "^2.1.0",
"@tkey-mpc/common-types": "^9.1.0",
"@tkey-mpc/core": "^9.1.1",
"@tkey-mpc/service-provider-torus": "^9.1.0",
"@tkey-mpc/share-serialization": "^9.1.0",
"@tkey-mpc/storage-layer-torus": "^9.1.0",
"@toruslabs/constants": "^13.0.1",
"@toruslabs/customauth": "^18.1.0",
"@toruslabs/eccrypto": "4.0.0",
"@toruslabs/http-helpers": "^5.0.0",
"@toruslabs/fetch-node-details": "^13.1.1",
"@toruslabs/fnd-base": "^13.1.1",
"@toruslabs/metadata-helpers": "^5.x",
"@toruslabs/openlogin-session-manager": "^3.0.0",
"@toruslabs/openlogin-utils": "^8.0.0",
"@toruslabs/torus.js": "12.2.0",
"@toruslabs/tss-client": "^2.1.0",
"@toruslabs/tss-lib": "^2.0.0",
"@web3auth-mpc/ethereum-provider": "^3.1.0",
"@web3auth/base": "^7.3.1",
"@web3auth/base-provider": "^7.3.1",
"bn.js": "^5.2.1",
"bowser": "^2.11.0",
"elliptic": "^6.5.4",
"hi-base32": "^0.5.1"
},
"devDependencies": {
"@babel/register": "^7.23.7",
"@toruslabs/config": "^2.0.2",
"@toruslabs/eslint-config-typescript": "^3.1.0",
"@toruslabs/torus-scripts": "^5.2.0",
"@toruslabs/tss-lib-node": "^1.1.3",
"@types/chai": "^4.3.11",
"@types/elliptic": "^6.4.18",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"chai": "^5.0.3",
"cross-env": "^7.0.3",
"dotenv": "^16.4.1",
"esbuild-register": "^3.5.0",
"eslint": "^8.56.0",
"husky": "^9.0.10",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.2.1",
"mocha": "^10.2.0",
"node-fetch": "^3.3.2",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.x"
},
"overrides": {
"@toruslabs/customauth": "^18.1.0",
"@tkey-mpc/storage-layer-torus": {
"@toruslabs/http-helpers": "^6.0.0"
},
"@toruslabs/base-session-manager": {
"@toruslabs/http-helpers": "^6.0.0"
},
"@tkey-mpc/service-provider-torus": {
"@toruslabs/torus.js": "^12.2.0",
"@toruslabs/customauth": "^18.1.0"
}
},
"lint-staged": {
"!(*d).ts": [
"eslint --cache --fix",
"prettier --write"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Web3Auth/mpc-core-kit"
},
"bugs": {
"url": "https://github.com/Web3Auth/mpc-core-kit/issues"
}
}