forked from Web3Auth/single-factor-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.68 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.68 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
{
"name": "@web3auth/single-factor-auth",
"version": "7.2.2",
"description": "Multi chain wallet aggregator silent MFA for web3Auth",
"keywords": [
"web3Auth/single-factor-auth",
"web3Auth",
"multichainWallet",
"blockchain",
"ethereum",
"solana"
],
"main": "dist/singleFactorAuth.cjs.js",
"module": "dist/singleFactorAuth.esm.js",
"unpkg": "dist/singleFactorAuth.umd.min.js",
"jsdelivr": "dist/singleFactorAuth.umd.min.js",
"types": "dist/types/index.d.ts",
"author": "Torus Labs",
"homepage": "https://github.com/Web3Auth/single-factor-auth-web#readme",
"license": "ISC",
"scripts": {
"test": "mocha --config ./.mocharc.json test/**.ts",
"test-debugger": "mocha --config ./.mocharc.json --inspect-brk test/**.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"
},
"dependencies": {
"@toruslabs/constants": "^13.1.0",
"@toruslabs/fetch-node-details": "^13.1.1",
"@toruslabs/openlogin-jrpc": "^6.1.0",
"@toruslabs/openlogin-session-manager": "^3.0.0",
"@toruslabs/openlogin-subkey": "^6.0.0",
"@toruslabs/openlogin-utils": "^6.1.0",
"@toruslabs/torus.js": "^12.1.0",
"@web3auth/base": "^7.2.0",
"jwt-decode": "^4.0.0"
},
"devDependencies": {
"@babel/register": "^7.22.15",
"@toruslabs/config": "^2.0.2",
"@toruslabs/eslint-config-typescript": "^3.0.3",
"@toruslabs/torus-scripts": "^5.1.0",
"@types/chai": "^4.3.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20",
"@web3auth/base-provider": "^7.2.0",
"@web3auth/ethereum-provider": "7.2.0",
"@web3auth/solana-provider": "7.2.0",
"chai": "^4.3.10",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.1.0",
"mocha": "^10.2.0",
"node-fetch": "^3.3.2",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
},
"lint-staged": {
"!(*d).ts": [
"eslint --cache --fix"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Web3Auth/single-factor-auth-web.git"
},
"bugs": {
"url": "https://github.com/Web3Auth/single-factor-auth-web/issues"
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
}
}