forked from WalletConnect/walletconnect-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.74 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
{
"name": "walletconnect-monorepo",
"description": "Monorepo for WalletConnect",
"private": true,
"keywords": [
"wallet",
"walletconnect",
"ethereum",
"jsonrpc",
"mobile",
"qrcode",
"web3",
"crypto",
"cryptocurrency",
"dapp"
],
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/walletconnect/walletconnect-monorepo/",
"license": "Apache-2.0",
"workspaces": [
"packages/types",
"packages/utils",
"packages/core",
"packages/sign-client",
"packages/react-native-compat",
"packages/web3wallet",
"providers/universal-provider",
"providers/signer-connection",
"providers/ethereum-provider"
],
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"prettier": "npm run prettier --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:ignoreUnhandled": "npm run test:ignoreUnhandled --workspaces --if-present",
"check": "npm run lint; npm run build; npm run test",
"reset": "npm run clean; npm run check",
"new-version": "lerna version --no-private --no-git-tag-version --exact && ./scripts/update_relayer_sdk_version.sh",
"pre-publish": "npm run new-version; npm run reset",
"npm-publish:rc": "lerna exec --no-private -- npm publish --access public --tag rc",
"npm-publish:latest": "lerna exec --no-private -- npm publish --access public --tag latest",
"npm-publish:next": "lerna exec --no-private -- npm publish --access public --tag next",
"npm-publish:canary": "lerna exec --no-private -- npm publish --access public --tag canary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/walletconnect-monorepo.git"
},
"bugs": {
"url": "https://github.com/walletconnect/walletconnect-monorepo/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/node": "18.7.3",
"@types/sinon": "10.0.13",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-standard": "5.0.0",
"lerna": "5.5.2",
"prettier": "2.7.1",
"rollup": "2.78.0",
"rollup-plugin-esbuild": "4.9.3",
"sinon": "14.0.0",
"typescript": "4.7.4",
"vitest": "^0.22.1"
},
"dependencies": {
"vite": "^4.3.8"
}
}