-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
executable file
·89 lines (89 loc) · 2.71 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
{
"name": "nautilus-wallet",
"version": "0.14.2",
"private": true,
"type": "module",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"scripts": {
"dev:mainnet": "vite",
"dev:testnet": "VITE_NETWORK=testnet vite",
"build:mainnet": "vite build",
"build:testnet": "VITE_NETWORK=testnet vite build",
"build:mainnet:stage": "vite build --mode staging",
"test:unit": "vitest run",
"test:lint": "echo not implemented",
"fix:lint": "echo not implemented"
},
"dependencies": {
"@download/blockies": "^1.0.3",
"@emurgo/cip4-js": "^1.0.7",
"@fleet-sdk/babel-fees-plugin": "^0.1.16",
"@fleet-sdk/blockchain-providers": "^0.7.0",
"@fleet-sdk/common": "^0.6.4",
"@fleet-sdk/core": "^0.7.0",
"@fleet-sdk/crypto": "^0.6.4",
"@fleet-sdk/serializer": "^0.7.0",
"@fleet-sdk/wallet": "^0.7.0",
"@ledgerhq/hw-transport-webusb": "^6.29.2",
"@mdi/js": "^7.4.47",
"@oruga-ui/oruga-next": "0.6.0",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^11.0.3",
"bignumber.js": "^9.1.2",
"cleave.js": "^1.6.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"dexie": "^4.0.8",
"ergo-lib-wasm-browser": "^0.28.0",
"feather-icons": "^4.29.2",
"ledger-ergo-js": "^0.1.18",
"lodash-es": "^4.17.21",
"mdi-vue": "^3.0.13",
"pinia": "^2.2.2",
"uqr": "^0.1.2",
"vue": "^3.5.8",
"vue-feather": "^2.0.0",
"vue-json-pretty": "2.4.0",
"vue-router": "^4.4.4",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.12.0",
"yaml": "^2.5.1"
},
"devDependencies": {
"@ergo-graphql/types": "^0.5.1",
"@nautilus-js/eip12-types": "^0.1.11",
"@tsconfig/node20": "^20.1.4",
"@types/chrome": "^0.0.270",
"@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.5.0",
"@vitejs/plugin-vue": "^5.1.3",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.28.0",
"prettier": "^3.3.3",
"type-fest": "^4.26.1",
"typescript": "5.6.2",
"vite": "^5.4.4",
"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.1.6",
"vite-plugin-windicss": "^1.9.3",
"vite-svg-loader": "^5.1.0",
"vitest": "^2.1.0",
"vue-eslint-parser": "^9.4.3"
}
}