-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.54 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
{
"name": "@web3auth/single-factor-auth",
"version": "9.3.0",
"description": "Multi chain wallet aggregator silent MFA for web3Auth",
"keywords": [
"web3Auth/single-factor-auth",
"web3Auth",
"multichainWallet",
"blockchain",
"ethereum",
"solana"
],
"sideEffects": false,
"main": "dist/lib.cjs/index.js",
"module": "dist/lib.esm/index.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#readme",
"license": "ISC",
"scripts": {
"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 .",
"prepare": "husky",
"test": "vitest run --coverage"
},
"files": [
"dist"
],
"peerDependencies": {
"@babel/runtime": "^7.x"
},
"dependencies": {
"@toruslabs/base-controllers": "^6.3.2",
"@toruslabs/constants": "^14.2.0",
"@toruslabs/fnd-base": "^14.2.0",
"@toruslabs/session-manager": "^3.2.0",
"@toruslabs/torus.js": "^15.1.1",
"@web3auth/auth": "^9.5.3",
"@web3auth/base": "^9.4.5",
"bs58": "^5.0.0"
},
"devDependencies": {
"@babel/register": "^7.25.9",
"@toruslabs/config": "^2.2.0",
"@toruslabs/eslint-config-typescript": "^3.3.4",
"@toruslabs/torus-scripts": "^6.1.6",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22",
"@vitest/coverage-v8": "^2.1.6",
"@web3auth/base-provider": "^9.4.5",
"@web3auth/ethereum-provider": "^9.4.5",
"@web3auth/solana-provider": "^9.4.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"husky": "^9.1.7",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.2.10",
"lodash-es": "^4.17.21",
"rimraf": "^6.0.1",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.6"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.28.0"
},
"lint-staged": {
"!(*d).ts": [
"eslint --cache --fix"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Web3Auth/single-factor-auth.git"
},
"bugs": {
"url": "https://github.com/Web3Auth/single-factor-auth/issues"
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
}
}