-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
135 lines (135 loc) · 5.05 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@provenanceio/walletconnect-js",
"version": "3.10.2",
"private": false,
"sideEffects": false,
"main": "esm/index.js",
"license": "Apache-2.0",
"typings": "./esm/index.d.ts",
"files": [
"lib",
"esm",
"umd"
],
"import": {
".": "./esm/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/provenance-io/walletconnect-js.git"
},
"keywords": [
"provenance blockchain",
"provenance",
"walletconnect"
],
"author": "Provenance Blockchain",
"bugs": {
"url": "https://github.com/provenance-io/walletconnect-js/issues"
},
"homepage": "https://github.com/provenance-io/walletconnect-js#readme",
"dependencies": {
"@walletconnect/client": "1.8.0",
"@walletconnect/utils": "1.8.0",
"base64url": "3.0.1",
"buffer": "npm:[email protected]",
"crypto": "npm:[email protected]",
"qrcode": "^1.5.3",
"secp256k1": "5.0.0",
"stream": "npm:[email protected]",
"util": "npm:[email protected]"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.3",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.18.9",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/plugin-transform-modules-commonjs": "7.18.6",
"@babel/plugin-transform-nullish-coalescing-operator": "7.22.5",
"@babel/plugin-transform-object-assign": "7.18.6",
"@babel/plugin-transform-react-constant-elements": "7.18.12",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/preset-env": "7.19.3",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@types/chrome": "0.0.197",
"@types/create-hash": "1.2.2",
"@types/google-protobuf": "3.15.6",
"@types/jest": "29.4.0",
"@types/node": "18.7.23",
"@types/qrcode": "1.5.0",
"@types/react": "18.0.21",
"@types/react-router-dom": "5.3.3",
"@types/secp256k1": "4.0.3",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.5",
"concurrently": "7.4.0",
"css-loader": "6.7.1",
"enquirer": "2.3.6",
"env-cmd": "10.1.0",
"eslint": "8.36.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"file-loader": "6.2.0",
"husky": "^9.0.10",
"jest": "29.4.3",
"json-schema-to-typescript": "11.0.2",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"pretty-error": "4.0.0",
"process": "0.11.10",
"react": "^18.2.0",
"style-loader": "3.3.1",
"ts-loader": "9.4.1",
"typescript": "4.8.3",
"webpack": "5.76.1",
"webpack-cli": "5.0.1"
},
"scripts": {
"build:commonjs": "BABEL_ENV=cjs babel ./src --extensions \".js,.jsx,.ts,.tsx\" -d lib --copy-files",
"build:esm": "BABEL_ENV=esm babel src -d esm --extensions \".js,.jsx,.ts,.tsx\" --copy-files",
"build:umd": "webpack",
"build:pack": "npm run clean && npm run build:esm && npm run tsc:esm && npm pack --pack-destination './examples'",
"build": "npm run clean && npm run build:commonjs && npm run build:esm && npm run build:umd && npm run tsc:esm && npm run tsc:commonjs",
"clean": "rm -rf ./lib ./esm ./umd ./examples/provenanceio-walletconnect-js-*.tgz",
"commentSniff": "node -e 'require(\"./scripts/commentSniffer.js\").commentSniffer()'",
"build:demo": "node -e 'require(\"./scripts/buildDemo.js\").buildDemo()' && cd figure-tech-walletconnect && npm i --package-lock-only",
"start:example-react": "cd examples/example-react-vite && npm i && npm run start",
"watch:example-react": "cd examples/example-react-vite && npm run start",
"prebuild": "npm run test",
"start:watch": "nodemon -e js,ts,tsx,css --watch src --exec 'npm run build:pack && npm run watch:example-react'",
"start": "npm run start:watch && npm run start:example-react",
"test": "jest",
"test:push": "jest && npm run test:example-build",
"test:example-build": "npm run build:pack && cd examples/example-react-vite && npm run install && npm run build",
"tsc:commonjs": "tsc --module commonjs --outDir lib",
"tsc:esm": "tsc --module es2015 --outDir esm",
"vup:major": "npm version major --no-git-tag-version && cd examples/example-react-vite && npm version major --no-git-tag-version",
"vup:minor": "npm version minor --no-git-tag-version && cd examples/example-react-vite && npm version minor --no-git-tag-version",
"vup:patch": "npm version patch --no-git-tag-version && cd examples/example-react-vite && npm version patch --no-git-tag-version"
},
"browserslist": [
"defaults"
],
"eslintConfig": {
"extends": [
"react-app",
"prettier"
]
},
"jest": {
"testMatch": [
"**/__tests__/unit/*.test.ts"
]
}
}