-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.83 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
{
"name": "metahub-wallet-web-extension",
"version": "2.1.3",
"type": "module",
"displayName": "Metahub Wallet",
"author": "metahub",
"description": "A Simple to Use EOS Web Wallet",
"scripts": {
"build:main": "vue-tsc --noEmit && vite build",
"build:content": "vue-tsc --noEmit && vite build --mode content --minify false",
"build": "vue-tsc --noEmit && vite build && vite build --mode content",
"build:dev": "vue-tsc --noEmit && vite build --mode development --minify false && vite build --mode content --minify false",
"watch": "vite build --watch --mode development --minify false",
"watch:content": "vite build --watch --mode content --minify false",
"dev": "vite --mode development",
"serve": "web-ext run -t chromium --start-url \"https://google.com\" --source-dir ./dist/",
"serve:firefox": "web-ext run --start-url \"about:debugging#/runtime/this-firefox\" --source-dir ./dist/",
"prepare": "husky install",
"commitlint": "commitlint --config commitlint.config.js -e -V",
"commit": "cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@types/chrome": "^0.0.206",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.5",
"@types/qrcode": "^1.5.0",
"@vitejs/plugin-vue": "^4.2.3",
"autoprefixer": "^10.4.14",
"cz-conventional-changelog": "^3.3.0",
"git-cz": "^4.3.0",
"husky": "^8.0.0",
"naive-ui": "^2.34.4",
"postcss": "^8.4.28",
"sass": "^1.65.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"unplugin-auto-import": "^0.15.1",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.4.9",
"vite-plugin-node-stdlib-browser": "^0.2.1",
"vite-plugin-remove-console": "^2.1.1",
"vue-tsc": "^1.0.19",
"web-ext": "^7.4.0"
},
"dependencies": {
"@icon-park/vue-next": "^1.4.2",
"@types/crypto-js": "^4.1.1",
"animate.css": "^4.1.1",
"axios": "^1.3.4",
"bignumber.js": "^9.1.1",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.9",
"eosjs": "^22.1.0",
"ethereumjs-util": "^7.1.5",
"lodash": "^4.17.21",
"node-stdlib-browser": "^1.2.0",
"pinia": "^2.0.33",
"qrcode": "^1.5.3",
"vee-validate": "^4.5.8",
"vite-plugin-web-extension-support-inject": "^5.0.0",
"vue": "^3.2.47",
"vue-clipboard3": "^2.0.0",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"yup": "^1.0.2"
}
}