-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.3 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
{
"name": "@walletconnect/se-sdk",
"description": "Single-Ethreum-SDK for WalletConnect Protocol",
"private": false,
"version": "1.11.0",
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/walletconnect/walletconnect-monorepo/",
"license": "Apache-2.0",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"unpkg": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"keywords": [
"wallet",
"walletconnect"
],
"scripts": {
"clean": "rm -rf dist",
"build:pre": "npm run clean",
"build:types": "tsc",
"build:source": "rollup --config rollup.config.js",
"build": "npm run build:pre; npm run build:source; npm run build:types",
"test": "vitest run --dir test",
"lint": "eslint --fix './src/**/*.ts'",
"prettier": "prettier --check '{src,test}/**/*.{js,ts,jsx,tsx}'",
"run:examples": "cd ./examples/dapp && yarn dev & cd ./examples/wallet && yarn dev",
"run:dapp": "cd ./examples/dapp && yarn dev",
"run:wallet": "cd ./examples/wallet && yarn dev",
"build:wallet": "yarn build && cd ./examples/wallet && yarn build",
"install:all": "yarn && cd ./examples/dapp && yarn && cd ./../wallet && yarn"
},
"dependencies": {
"@reown/walletkit": "1.1.1"
},
"devDependencies": {
"@ethersproject/wallet": "^5.7.0",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@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-n": "^15.6.1",
"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",
"lokijs": "^1.5.12",
"prettier": "^2.8.4",
"rollup": "2.78.0",
"rollup-plugin-esbuild": "4.9.3",
"rollup-plugin-polyfill-node": "0.10.2",
"typescript": "4.7.4",
"utf-8-validate": "6.0.3",
"vitest": "^0.31.1"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"module": "./dist/index.es.js",
"default": "./dist/index.cjs.js"
}
}
}