-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
executable file
·101 lines (101 loc) · 3.17 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
{
"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",
"@emurgo/cip4-js": "^1.0.7",
"@fleet-sdk/babel-fees-plugin": "^0.1.18",
"@fleet-sdk/blockchain-providers": "^0.8.1",
"@fleet-sdk/common": "^0.8.0",
"@fleet-sdk/core": "^0.8.1",
"@fleet-sdk/crypto": "^0.8.0",
"@fleet-sdk/serializer": "^0.8.0",
"@fleet-sdk/wallet": "^0.8.1",
"@ledgerhq/hw-transport-webusb": "^6.29.4",
"@oruga-ui/oruga-next": "0.6.0",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^12.0.0",
"bignumber.js": "^9.1.2",
"cleave.js": "^1.6.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"dexie": "^4.0.10",
"ergo-lib-wasm-browser": "^0.28.0",
"ledger-ergo-js": "^0.1.20",
"lodash-es": "^4.17.21",
"lucide-vue-next": "^0.468.0",
"pinia": "^2.3.0",
"uqr": "^0.1.2",
"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.6.1"
},
"devDependencies": {
"@ergo-graphql/types": "^0.5.1",
"@eslint/compat": "^1.2.4",
"@nautilus-js/eip12-types": "^0.1.11",
"@tsconfig/node20": "^20.1.4",
"@types/chrome": "^0.0.287",
"@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/webextension-polyfill": "^0.12.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-vue": "^5.2.0",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.4",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"type-fest": "^4.30.2",
"typescript": "5.7.2",
"vite": "^5.4.11",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0",
"vite-plugin-web-extension": "^4.3.1",
"vite-svg-loader": "^5.1.0",
"vitepress": "^1.5.0",
"vitest": "^2.1.5",
"vue-eslint-parser": "^9.4.3"
},
"pnpm": {
"patchedDependencies": {
"webext-bridge@6.0.1": "patches/webext-bridge@6.0.1.patch"
}
}
}