-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.83 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 3.83 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@web3auth/auth",
"version": "11.2.1",
"description": "Auth sdk for web3auth",
"repository": "git@github.com:web3auth/Auth.git",
"sideEffects": false,
"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",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/lib.cjs/types/index.d.ts",
"import": "./dist/lib.esm/index.js",
"require": "./dist/lib.cjs/index.js"
},
"./package.json": {
"import": "./package.json",
"require": "./package.json"
},
"./core": {
"types": "./dist/lib.cjs/types/core/index.d.ts",
"import": "./dist/lib.esm/core/index.js",
"require": "./dist/lib.cjs/core/index.js"
},
"./ed25519": {
"types": "./dist/lib.cjs/types/ed25519/index.d.ts",
"import": "./dist/lib.esm/ed25519/index.js",
"require": "./dist/lib.cjs/ed25519/index.js"
},
"./jrpc": {
"types": "./dist/lib.cjs/types/jrpc/index.d.ts",
"import": "./dist/lib.esm/jrpc/index.js",
"require": "./dist/lib.cjs/jrpc/index.js"
},
"./subkey": {
"types": "./dist/lib.cjs/types/subkey/index.d.ts",
"import": "./dist/lib.esm/subkey/index.js",
"require": "./dist/lib.cjs/subkey/index.js"
},
"./utils": {
"types": "./dist/lib.cjs/types/utils/index.d.ts",
"import": "./dist/lib.esm/utils/index.js",
"require": "./dist/lib.cjs/utils/index.js"
}
},
"scripts": {
"start": "cross-env FORCE_COLOR=1 torus-scripts start",
"dev": "rimraf dist/ && cross-env NODE_ENV=development torus-scripts start",
"build": "cross-env FORCE_COLOR=1 torus-scripts build",
"release": "cross-env FORCE_COLOR=1 torus-scripts release",
"lint": "torus-scripts lint",
"prepack": "npm run build",
"pre-commit": "lint-staged --cwd .",
"test": "vitest run --config test/configs/node.config.mts --coverage",
"prepare": "husky"
},
"devDependencies": {
"@babel/register": "^7.28.6",
"@babel/runtime": "^7.28.6",
"@rollup/plugin-replace": "^6.0.3",
"@toruslabs/config": "^4.0.0",
"@toruslabs/eslint-config-typescript": "^5.0.1",
"@toruslabs/torus-scripts": "^8.0.1",
"@toruslabs/tweetnacl-js": "^1.0.4",
"@types/color": "^4.2.0",
"@types/deep-freeze-strict": "^1.1.2",
"@types/node": "^25",
"@types/once": "^1.4.5",
"@types/readable-stream": "^4.0.23",
"@vitest/coverage-istanbul": "^4.0.18",
"color": "^5.0.3",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@babel/runtime": "7.x",
"color": "^5.x"
},
"optionalDependencies": {
"@nx/nx-linux-x64-gnu": "^22.5.4",
"@rollup/rollup-linux-x64-gnu": "^4.59.0"
},
"author": "Torus Labs",
"license": "MIT",
"lint-staged": {
"!(*d).{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=22.x",
"npm": ">=10.x"
},
"dependencies": {
"@toruslabs/constants": "^16.0.0",
"@toruslabs/customauth": "^22.2.0",
"@toruslabs/ffjavascript": "^6.0.0",
"@toruslabs/metadata-helpers": "^8.2.0",
"@toruslabs/secure-pub-sub": "^4.2.0",
"@toruslabs/session-manager": "^5.4.0",
"deep-freeze-strict": "^1.1.1",
"events": "^3.3.0",
"json-stable-stringify": "^1.3.0",
"klona": "^2.0.6",
"loglevel": "^1.9.2",
"once": "^1.4.0",
"readable-stream": "^4.7.0",
"typed-emitter": "^2.1.0"
},
"publishConfig": {
"access": "public"
}
}