This repository has been archived by the owner on Aug 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 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
{
"name": "walletconnect-auth-client-repo",
"description": "Repository for the WalletConnect JS AuthClient",
"version": "0.1.0",
"private": true,
"keywords": [
"wallet",
"walletconnect",
"ethereum",
"jsonrpc",
"mobile",
"qrcode",
"web3",
"crypto",
"cryptocurrency",
"dapp"
],
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/walletconnect/auth-client-js/",
"license": "Apache-2.0",
"workspaces": [
"packages/auth-client"
],
"scripts": {
"clean": "npm run clean --workspaces",
"lint": "npm run lint --workspaces",
"prettier": "npm run prettier --workspaces",
"prettier:write": "npm run prettier:write --workspaces",
"build": "npm run clean --workspaces; npm run build --workspaces",
"test": "npm run test --workspaces",
"canary": "npm run canary --workspaces",
"test:watch": "npm run test:watch --workspaces",
"npm-publish": "npm publish --access public --workspaces",
"npm-publish:canary": "npm publish --access public --tag canary --workspaces",
"npm-publish:experimental": "npm publish --access public --tag experimental --workspaces"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/auth-client-js.git"
},
"bugs": {
"url": "https://github.com/walletconnect/auth-client-js/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.1",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/node": "18.6.1",
"@types/pino": "6.3.3",
"@types/sinon": "10.0.13",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"eslint": "8.20.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",
"prettier": "2.7.1",
"rollup": "2.77.0",
"rollup-plugin-esbuild": "4.9.1",
"rollup-plugin-polyfill-node": "0.10.2",
"sinon": "14.0.0",
"typescript": "4.7.4",
"vitest": "0.19.0"
}
}