-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.65 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.65 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
{
"description": "Monorepo for Reown WalletKit",
"private": true,
"keywords": [
"wallet",
"walletconnect",
"ethereum",
"jsonrpc",
"mobile",
"qrcode",
"web3",
"crypto",
"cryptocurrency",
"dapp",
"reown",
"walletkit"
],
"author": "Reown, Inc.",
"homepage": "https://github.com/reown-com/",
"license": "SEE LICENSE IN LICENSE.md",
"workspaces": [
"packages/walletkit"
],
"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",
"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; npm i",
"changeset:publish": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reown-com.git"
},
"bugs": {
"url": "https://github.com/reown-com/issues"
},
"overrides": {
"tar": "7.5.7"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.1",
"@changesets/cli": "2.29.8",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/node": "18.7.3",
"@types/sinon": "21.0.0",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"esbuild": "0.25.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-n": "15.7.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": "9.0.3",
"prettier": "2.7.1",
"rollup": "2.79.2",
"rollup-plugin-esbuild": "4.9.3",
"sinon": "21.0.1",
"typescript": "4.7.4",
"vitest": "3.2.4"
}
}