-
Notifications
You must be signed in to change notification settings - Fork 817
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.36 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.36 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
{
"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": "SEE LICENSE IN LICENSE.md",
"workspaces": [
"packages/types",
"packages/utils",
"packages/core",
"packages/sign-client",
"packages/react-native-compat",
"providers/universal-provider",
"providers/signer-connection",
"providers/ethereum-provider",
"packages/pos-client",
"packages/pay"
],
"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 && npm run sh-update-versions",
"sh-update-versions": "sh ./scripts/update_lerna_json_version.sh && ./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",
"changeset": "changeset",
"changeset:version": "changeset version --no-commit && npm i && npm run sh-update-versions && sh ./scripts/commit.sh",
"changeset:publish": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/walletconnect-monorepo.git"
},
"bugs": {
"url": "https://github.com/walletconnect/walletconnect-monorepo/issues"
},
"overrides": {
"tar": "7.5.13",
"lodash": "4.17.23",
"vite": "7.3.1",
"axios": "1.14.0",
"@isaacs/brace-expansion": "5.0.1",
"@react-native-async-storage/async-storage": "3.0.2"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@rollup/plugin-alias": "6.0.0",
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@types/node": "18.19.122",
"@types/sinon": "21.0.0",
"@typescript-eslint/eslint-plugin": "8.57.2",
"@typescript-eslint/parser": "8.57.2",
"esbuild": "0.25.0",
"eslint": "8.57.0",
"eslint-config-prettier": "10.1.8",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-react": "7.37.5",
"lerna": "9.0.7",
"prettier": "3.8.1",
"rollup": "4.60.1",
"rollup-plugin-esbuild": "6.2.1",
"rollup-plugin-visualizer": "5.14.0",
"sinon": "21.0.3",
"typescript": "5.9.3",
"vitest": "3.2.4"
}
}