-
Notifications
You must be signed in to change notification settings - Fork 229
/
package.json
87 lines (87 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
{
"author": "Torus Labs",
"bugs": {
"url": "https://github.com/Web3Auth/Web3Auth/issues"
},
"description": "Monorepo for web3 auth packages",
"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/chai": "^4.3.19",
"@types/mocha": "^10.0.9",
"@types/node": "^22",
"chai": "^5.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tslib": "^2.8.1",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
},
"homepage": "https://github.com/Web3Auth/Web3Auth#readme",
"keywords": [
"aggregator",
"authentication",
"blockchain",
"ethereum",
"key management",
"login",
"solana",
"wallet",
"web3"
],
"license": "ISC",
"lint-staged": {
"*": "lerna run --concurrency 1 --stream --since HEAD --exclude-dependents pre-commit -- "
},
"name": "web3auth",
"optionalDependencies": {
"@nx/nx-linux-x64-gnu": "^20.0.11",
"@rollup/rollup-linux-x64-gnu": "^4.24.4"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Web3Auth/Web3Auth.git"
},
"scripts": {
"build": "cross-env FORCE_COLOR=1 lerna run --stream build",
"clean": "lerna clean --yes && lerna exec -- rimraf package-lock.json .rollup.cache/ tsconfig.build.tsbuildinfo yarn.lock dist/ .rts2_cache_{cjs,esm}/ web3auth-*.tgz .eslintcache",
"dev": "lerna run dev --parallel",
"just:publish:lerna": "lerna publish",
"lint": "cross-env FORCE_COLOR=1 lerna run lint --parallel",
"locale": "node locales/importLocales.mjs",
"pack:lerna": "lerna exec 'npm pack'",
"pre-commit": "lerna run pre-commit",
"prepare": "husky",
"publish:lerna": "npm run clean && npm install && lerna publish",
"test": "cross-env FORCE_COLOR=1 lerna run test --parallel",
"test-debugger": "cross-env FORCE_COLOR=1 lerna run test-debugger --parallel"
},
"workspaces": [
"packages/adapter-factory",
"packages/adapters/*",
"packages/base",
"packages/composables/*",
"packages/hooks/*",
"packages/modal",
"packages/no-modal",
"packages/plugins/*",
"packages/providers/*",
"packages/ui"
]
}