-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
executable file
·110 lines (110 loc) · 3.5 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
{
"name": "nautilus-wallet",
"version": "0.15.2",
"private": true,
"type": "module",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"scripts": {
"dev:mainnet": "vite",
"dev:testnet": "NETWORK=testnet vite",
"dev:docs": "vitepress dev docs",
"build:mainnet:chrome": "vite build",
"build:mainnet:firefox": "TARGET=firefox vite build",
"build:testnet:chrome": "NETWORK=testnet vite build",
"build:testnet:firefox": "TARGET=firefox NETWORK=testnet vite build",
"build:mainnet:chrome:stage": "vite build --mode staging",
"build:docs": "vitepress build docs",
"test:unit": "vitest run",
"test:lint": "eslint ./src",
"test:format": "prettier ./src --check",
"fix:format": "prettier ./src --write"
},
"dependencies": {
"@download/blockies": "^1.0.3",
"@fleet-sdk/babel-fees-plugin": "^0.1.19",
"@fleet-sdk/blockchain-providers": "^0.8.2",
"@fleet-sdk/common": "^0.8.0",
"@fleet-sdk/core": "^0.8.2",
"@fleet-sdk/crypto": "^0.8.2",
"@fleet-sdk/serializer": "^0.8.2",
"@fleet-sdk/wallet": "^0.8.2",
"@ledgerhq/hw-transport-webusb": "^6.29.4",
"@unovis/ts": "^1.5.0",
"@unovis/vue": "^1.5.0",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^12.5.0",
"bignumber.js": "^9.1.2",
"class-variance-authority": "^0.7.1",
"cleave.js": "^1.6.0",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"dexie": "^4.0.11",
"ergo-lib-wasm-browser": "^0.28.0",
"ledger-ergo-js": "^0.2.1",
"lodash-es": "^4.17.21",
"lucide-vue-next": "^0.474.0",
"pinia": "^2.3.1",
"radix-vue": "^1.9.13",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"uqr": "^0.1.2",
"vaul-vue": "^0.2.1",
"vue": "^3.5.13",
"vue-json-pretty": "2.4.0",
"vue-router": "^4.5.0",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.12.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@ergo-graphql/types": "^0.5.1",
"@eslint/compat": "^1.2.6",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@nautilus-js/eip12-types": "^0.1.11",
"@tsconfig/node20": "^20.1.4",
"@types/chrome": "^0.0.301",
"@types/cleave.js": "^1.4.12",
"@types/crypto-js": "^4.2.2",
"@types/json-bigint": "^1.0.4",
"@types/lodash-es": "^4.17.12",
"@types/w3c-web-usb": "^1.0.10",
"@types/webextension-polyfill": "^0.12.1",
"@typescript-eslint/parser": "^8.23.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.3.0",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.19.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-vue": "^9.32.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"type-fest": "^4.33.0",
"typescript": "5.7.3",
"vite": "^5.4.14",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.4.1",
"vite-plugin-web-extension": "^4.4.3",
"vite-svg-loader": "^5.1.0",
"vitepress": "^1.6.3",
"vitest": "^3.0.5",
"vue-eslint-parser": "^9.4.3"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@types/[email protected]": "patches/@[email protected]"
}
}
}