-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "vue-metamask",
"version": "3.0.3",
"description": "基於 Vue 底下獲取跟檢查 Metamask 的狀態",
"type": "module",
"main": "dist/vue-metamask.cjs.js",
"module": "dist/vue-metamask.es.js",
"unpkg": "dist/vue-metamask.iife.js",
"files": [
"dist"
],
"author": "mike cheng <https://github.com/MikeCheng1208/> (https://github.com/MikeCheng1208/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MikeCheng1208/vue-metamask.git"
},
"bugs": {
"url": "https://github.com/MikeCheng1208/vue-metamask/issues"
},
"homepage": "https://github.com/MikeCheng1208/vue-metamask",
"scripts": {
"dev": "vite",
"build": "vite build",
"watch": "vite build --watch",
"preview": "vite preview",
"push": "git push && npm publish --access=public"
},
"dependencies": {
"ethers": "^6.13.5",
"vue": "^3.5.13",
"web3": "^4.16.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"vite": "^6.0.5"
},
"keywords": [
"vue",
"vue3",
"metamask"
]
}