-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 3.22 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
{
"name": "metalet",
"private": true,
"version": "2.7.1",
"type": "module",
"scripts": {
"dev": "vite --config ./vite-config/vite.dev.config.ts",
"type-check": "vue-tsc --noEmit",
"clear": "rimraf dist",
"build:content": "vite build --config ./vite-config/vite.content.config.ts",
"build:inject": "vite build --config ./vite-config/vite.inject.config.ts",
"build:injectWatch": "vite build --config ./vite-config/vite.injectwatch.config.ts",
"build:bg": "vite build --config ./vite-config/vite.background.config.ts",
"build:web": "vue-tsc && vite build --config ./vite-config/vite.web.config.ts",
"build": "set NODE_ENV=production && run-s clear build:content build:inject build:bg build:web",
"buildm": "export NODE_ENV=production && export NODE_OPTIONS=--max-old-space-size=6144 && run-s clear build:content build:inject build:bg build:web",
"b": "yarn build",
"bw": "yarn build:web",
"bwc": "yarn build:content --watch",
"bwi": "yarn build:injectWatch",
"bwb": "yarn build:bg --watch",
"bww": "yarn build:web --watch",
"bwww": "set NODE_OPTIONS=--max-old-space-size=4096 && yarn build:web --watch",
"bwwm": "export NODE_OPTIONS=--max-old-space-size=6144 && yarn build:web --watch"
},
"dependencies": {
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
"@headlessui/tailwindcss": "^0.1.3",
"@headlessui/vue": "^1.7.12",
"@heroicons/vue": "^2.0.16",
"@okxweb3/crypto-lib": "^1.0.1",
"@rollup/plugin-alias": "^4.0.3",
"@scure/bip39": "^1.2.2",
"@sentry/vue": "^7.81.1",
"@tanstack/vue-query": "^4.26.1",
"@vueuse/components": "^10.9.0",
"@vueuse/core": "^10.3.0",
"@vueuse/integrations": "^10.4.1",
"axios": "0.27.2",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.5",
"bitcore-lib": "^10.0.0",
"bs58check": "^3.0.1",
"buffer": "^6.0.3",
"check-password-strength": "^2.0.7",
"create-hash": "^1.2.0",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.7",
"decimal.js": "^10.4.3",
"ecpair": "^2.1.0",
"memfs": "^4.5.0",
"meta-contract": "^0.4.4",
"mvc-std-lib": "^1.1.4",
"object-hash": "^3.0.0",
"qrcode": "^1.5.3",
"randombytes": "^2.1.0",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@rollup/plugin-inject": "^5.0.3",
"@types/bitcore-lib": "^0.15.3",
"@types/chrome": "^0.0.228",
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.15.10",
"@types/object-hash": "^3.0.2",
"@types/randombytes": "^2.0.3",
"@types/webextension-polyfill": "^0.10.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/ui": "^0.34.2",
"autoprefixer": "^10.4.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"rimraf": "^5.0.1",
"sass": "^1.62.1",
"tailwind-merge": "^2.2.2",
"tailwindcss": "^3.2.7",
"typescript": "^5.0.4",
"vite": "^4.4.9",
"vite-plugin-node-polyfills": "^0.14.1",
"vite-plugin-top-level-await": "^1.3.1",
"vite-plugin-vue-devtools": "^7.0.20",
"vite-plugin-wasm": "^3.2.2",
"vite-svg-loader": "^4.0.0",
"vitest": "^0.34.3",
"vue-tsc": "^1.0.24",
"webextension-polyfill": "^0.10.0"
}
}