-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
57 lines (57 loc) · 1.72 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
{
"name": "walletconnect-utils",
"description": "Monorepo for Javascript Utilities for WalletConnect",
"private": true,
"author": "WalletConnect, Inc. <walletconnect.com>",
"license": "MIT",
"homepage": "https://github.com/WalletConnect/walletconnect-utils/",
"repository": {
"type": "git",
"url": "git+https://github.com/WalletConnect/walletconnect-utils.git"
},
"bugs": {
"url": "https://github.com/WalletConnect/walletconnect-utils/issues"
},
"workspaces": [
"browser/*",
"jsonrpc/*",
"crypto/*",
"misc/*",
"relay/*"
],
"scripts": {
"lint": "turbo lint",
"prettier": "turbo prettier",
"format": "turbo format",
"build": "turbo build",
"test": "turbo test",
"check": "turbo run prettier lint build test",
"check:force": "turbo run prettier lint build test --force=true",
"changeset": "changeset",
"changeset:version": "changeset version",
"npm-publish": "changeset version && turbo pre-publish && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "13.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rollup": "2.78.0",
"rollup-plugin-esbuild": "4.9.3",
"turbo": "^1.10.16",
"typescript": "^4.9.5"
},
"optionalDependencies": {
"@nrwl/nx-linux-x64-gnu": "^15.9.2"
}
}