-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.38 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.38 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
{
"name": "@toruslabs/customauth",
"version": "22.3.3",
"description": "CustomAuth login with torus to get user private key",
"main": "dist/lib.cjs/index.js",
"module": "dist/lib.esm/index.js",
"unpkg": "dist/lib.esm/index.js",
"jsdelivr": "dist/lib.esm/index.js",
"types": "dist/lib.cjs/types/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "torus-scripts build",
"start": "torus-scripts start",
"release": "torus-scripts release",
"lint:ts": "torus-scripts lint --fix",
"prepack": "npm run build",
"test": "vitest run",
"prepare": "husky"
},
"files": [
"dist",
"serviceworker"
],
"peerDependencies": {
"@babel/runtime": "^7.x",
"@sentry/core": "^10.x"
},
"peerDependenciesMeta": {
"@sentry/core": {
"optional": true
}
},
"dependencies": {
"@chaitanyapotti/register-service-worker": "^1.7.4",
"@toruslabs/broadcast-channel": "^13.3.0",
"@toruslabs/constants": "^16.1.1",
"@toruslabs/eccrypto": "^7.0.0",
"@toruslabs/fetch-node-details": "^16.1.1",
"@toruslabs/http-helpers": "^9.0.0",
"@toruslabs/metadata-helpers": "^8.2.0",
"@toruslabs/session-manager": "^5.6.0",
"@toruslabs/torus.js": "^17.2.3",
"bowser": "^2.14.1",
"deepmerge": "^4.3.1",
"events": "^3.3.0",
"loglevel": "^1.9.2"
},
"devDependencies": {
"@sentry/core": "^10.45.0",
"@toruslabs/config": "^4.0.0",
"@toruslabs/eslint-config-typescript": "^5.0.1",
"@toruslabs/torus-scripts": "^8.0.1",
"@types/node": "^25",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"typed-emitter": "^2.1.0",
"typescript": "^5.9.3",
"vitest": "^4.1.1"
},
"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/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": ">=22.x",
"npm": ">=10.x"
}
}