forked from torusresearch/CustomAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.6 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
{
"name": "@toruslabs/customauth",
"version": "8.0.1",
"description": "CustomAuth login with torus to get user private key",
"main": "dist/customauth.cjs.js",
"module": "dist/customauth.esm.js",
"unpkg": "dist/customauth.umd.min.js",
"jsdelivr": "dist/customauth.umd.min.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rimraf dist/ && torus-scripts build",
"start": "rimraf dist/ && torus-scripts start",
"lint:ts": "eslint --fix 'src/**/*.ts'",
"prepack": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"files": [
"dist",
"src",
"serviceworker"
],
"peerDependencies": {
"@babel/runtime": "7.x"
},
"dependencies": {
"@chaitanyapotti/register-service-worker": "^1.7.3",
"@toruslabs/eccrypto": "^1.1.8",
"@toruslabs/fetch-node-details": "^5.0.1",
"@toruslabs/http-helpers": "^2.2.0",
"@toruslabs/metadata-helpers": "^2.5.0",
"@toruslabs/torus.js": "^5.1.0",
"bowser": "^2.11.0",
"@toruslabs/broadcast-channel": "^4.12.3",
"events": "^3.3.0",
"jwt-decode": "^3.1.2",
"lodash.merge": "^4.6.2",
"loglevel": "^1.8.0",
"web3-utils": "^1.7.3"
},
"devDependencies": {
"@toruslabs/eslint-config-typescript": "0.2.1",
"@toruslabs/torus-scripts": "^0.4.4",
"@types/lodash.merge": "^4.6.7",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "^0.2.16",
"eslint-plugin-vue": "^8.7.1",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"typescript": "^4.6.4"
},
"author": "Torus Labs",
"license": "MIT",
"lint-staged": {
"!(*d).{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{js,json, md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/torusresearch/CustomAuth.git"
},
"bugs": {
"url": "https://github.com/torusresearch/CustomAuth/issues"
},
"homepage": "https://github.com/torusresearch/CustomAuth#readme",
"keywords": [
"CustomAuth",
"customauth",
"torus-direct-auth",
"torus nodes",
"torus-embed",
"direct auth"
],
"engines": {
"node": ">=14.17.0",
"npm": ">=6.x"
}
}