forked from Web3Auth/web3auth-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.87 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
{
"name": "web3auth",
"private": true,
"workspaces": [
"packages/base",
"packages/core",
"packages/modal",
"packages/adapter-factory",
"packages/ui",
"packages/providers/*",
"packages/adapters/*",
"packages/plugins/*",
"packages/single-factor-auth"
],
"description": "Monorepo for web3 auth packages",
"scripts": {
"bootstrap": "lerna bootstrap",
"publish:lerna": "yarn clean && yarn bootstrap && lerna publish",
"just:publish:lerna": "lerna publish",
"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",
"build": "cross-env FORCE_COLOR=1 lerna run --stream build",
"dev": "lerna run dev --parallel",
"test": "cross-env FORCE_COLOR=1 lerna run test --parallel",
"test-debugger": "cross-env FORCE_COLOR=1 lerna run test-debugger --parallel",
"lint": "cross-env FORCE_COLOR=1 lerna run lint --parallel",
"pack:lerna": "lerna exec 'yarn pack'",
"pre-commit": "lerna run pre-commit",
"prepare": "husky install",
"locale": "node locales/importLocales.mjs"
},
"devDependencies": {
"@babel/register": "^7.18.9",
"@toruslabs/eslint-config-typescript": "^1.3.0",
"@toruslabs/torus-scripts": "^1.4.0",
"@types/chai": "^4.3.4",
"@types/faker": "^5.5.9",
"@types/jsonwebtoken": "^8.5.9",
"@types/mocha": "^10.0.1",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.33.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^9.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"faker": "^5.5.3",
"husky": "^8.0.3",
"jsonwebtoken": "^8.5.1",
"lerna": "^5.5.4",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"node-fetch": "^3.3.0",
"prettier": "^2.8.3",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Web3Auth/Web3Auth.git"
},
"keywords": [
"web3",
"ethereum",
"solana",
"wallet",
"aggregator",
"authentication",
"login",
"blockchain",
"key management"
],
"lint-staged": {
"*": "lerna run --concurrency 1 --stream --since HEAD --exclude-dependents pre-commit -- "
},
"author": "Torus Labs",
"license": "ISC",
"bugs": {
"url": "https://github.com/Web3Auth/Web3Auth/issues"
},
"homepage": "https://github.com/Web3Auth/Web3Auth#readme",
"engines": {
"node": ">=14.17.0",
"npm": ">=6.x"
}
}