forked from ethaccount/vue-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.27 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
{
"name": "@vue-dapp/walletconnect",
"version": "1.5.5",
"description": "Empower dapp developers with Vue integration for crypto wallets",
"repository": "https://github.com/vu3th/vue-dapp",
"bugs": {
"url": "https://github.com/vu3th/vue-dapp/issues"
},
"homepage": "https://github.com/vu3th/vue-dapp",
"author": "Johnson Chen <https://twitter.com/johnson86tw>",
"license": "MIT",
"keywords": [
"vue",
"vue3",
"dapp",
"web3",
"ethereum",
"crypto",
"wallet",
"walletconnect"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/walletconnect.umd.cjs",
"module": "./dist/walletconnect.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/walletconnect.js",
"require": "./dist/walletconnect.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"test": "vitest"
},
"dependencies": {
"@walletconnect/ethereum-provider": "latest"
},
"devDependencies": {
"@vitejs/plugin-vue": "5.0.3",
"@vue-dapp/core": "workspace:*",
"@walletconnect/types": "^2.9.0",
"typescript": "^5.4.5",
"vite": "5.2.9"
},
"peerDependencies": {
"@vue-dapp/core": "*"
},
"gitHead": "32a6d53db2bd674115648f41c80582140175c25b"
}