-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.79 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
{
"name": "@upbond/customauth",
"version": "1.0.3",
"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": "torus-scripts build",
"start": "torus-scripts start",
"release": "torus-scripts release",
"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",
"@sentry/types": "^7.x"
},
"peerDependenciesMeta": {
"@sentry/types": {
"optional": true
}
},
"dependencies": {
"@chaitanyapotti/register-service-worker": "^1.7.3",
"@rushstack/eslint-patch": "^1.5.1",
"@toruslabs/broadcast-channel": "^7.0.0",
"@toruslabs/constants": "^10.0.0",
"@toruslabs/eccrypto": "^3.0.0",
"@toruslabs/fetch-node-details": "^10.0.0",
"@toruslabs/http-helpers": "^4.0.0",
"@toruslabs/metadata-helpers": "^4.0.0",
"@toruslabs/torus.js": "^8.0.0",
"bowser": "^2.11.0",
"events": "^3.3.0",
"jwt-decode": "^3.1.2",
"lodash.merge": "^4.6.2",
"loglevel": "^1.8.1",
"oidc-client": "1.11.5"
},
"devDependencies": {
"@sentry/types": "^7.50.0",
"@toruslabs/eslint-config-typescript": "^2.0.0",
"@toruslabs/torus-scripts": "^4.0.0",
"@types/lodash.merge": "^4.6.7",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-vue": "^9.11.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"typescript": "^4.9.4"
},
"author": "Torus Labs",
"license": "MIT",
"lint-staged": {
"!(*d).{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json, md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/upbond/upbond-custom-auth.git"
},
"bugs": {
"url": "https://github.com/upbond/upbond-custom-auth/issues"
},
"homepage": "https://github.com/upbond/upbond-custom-auth#readme",
"keywords": [
"CustomAuth",
"customauth",
"torus-direct-auth",
"torus nodes",
"torus-embed",
"direct auth"
],
"engines": {
"node": ">=16.18.1",
"npm": ">=8.x"
}
}