forked from mfw78/web3modal-vue3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.33 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
{
"name": "web3modal-vue3",
"version": "1.3.4",
"description": "A single Web3 / Ethereum provider solution for all Wallets",
"private": false,
"keywords": [
"web3",
"web3vue",
"crypto",
"ethereum",
"web3modal",
"web3modalvue",
"vueweb3",
"metamask",
"walletconnect",
"portis",
"fortmatic",
"arkane",
"torus",
"authereum",
"frame",
"vue3",
"typescript"
],
"main": "./dist/web3modal-vue3.umd.js",
"module": "./dist/web3modal-vue3.es.js",
"exports": {
".": {
"import": "./dist/web3modal-vue3.es.js",
"require": "./dist/web3modal-vue3.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"types": "src/types/index.d.ts",
"jsdelivr": "dist/web3modal.js",
"files": [
"src",
"dist/*.js",
"vetur/tags.json",
"vetur/attributes.json"
],
"author": {
"name": "mfw78",
"email": "mfw78@chasingseed.com",
"url": "https://chasingseed.bzz.link/"
},
"license": "MIT",
"homepage": "https://github.com/mfw78/web3modal-vue3",
"repository": {
"type": "git",
"url": "https://github.com/mfw78/web3modal-vue3.git"
},
"bugs": {
"url": "https://github.com/mfw78/web3modal-vue3/issues"
},
"vetur": {
"tags": "dist/vetur/tags.json",
"attributes": "dist/vetur/attributes.json"
},
"dependencies": {
"detect-browser": "^5.2.0",
"ethers": "^5.4.6"
},
"scripts": {
"build": "vite build",
"build:vetur-meta": "node docgen.cjs",
"changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
"release": "bash scripts/release.sh",
"commit": "git-cz"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/lodash": "^4.14.172",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"@vitejs/plugin-vue": "^1.6.0",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-typescript": "^4.5.13",
"babel-eslint": "^10.1.0",
"conventional-changelog-cli": "^2.1.1",
"dictionary-en-us": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^7.17.0",
"git-cz": "^4.7.6",
"markdown-eslint-parser": "^1.2.1",
"prettier": "^2.3.2",
"remark-cli": "^10.0.0",
"remark-frontmatter": "^4.0.0",
"remark-preset-lint-consistent": "^5.0.1",
"remark-preset-lint-markdown-style-guide": "^5.0.1",
"remark-preset-lint-recommended": "^6.0.1",
"remark-retext": "^5.0.0",
"retext-english": "^4.1.0",
"retext-repeated-words": "^4.1.0",
"retext-sentence-spacing": "^5.1.0",
"retext-spell": "^5.1.0",
"retext-syntax-urls": "^3.1.0",
"retext-usage": "^0.5.0",
"rollup": "^2.56.3",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-replace": "^2.2.0",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"unified": "^10.1.0",
"vite": "^2.5.1",
"vite-plugin-banner": "^0.1.3",
"vue": "^3.2.6",
"vue-docgen-api": "^4.41.1",
"vue3-styled-components": "^1.2.1",
"web3": "^1.5.2"
}
}