-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
110 lines (110 loc) · 3.25 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": "zond-web3-wallet",
"description": "A browser extension, for creating accounts, signing transactions and sending transactions over the zond blockchain.",
"private": true,
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"test": "jest",
"preview": "vite preview"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.8.0",
"@hookform/resolvers": "^3.9.0",
"@jest/globals": "^29.7.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.2",
"@rollup/plugin-commonjs": "^26.0.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@theqrl/wallet.js": "^0.1.3",
"@theqrl/web3": "^0.3.0",
"@theqrl/zond-wallet-provider": "^0.1.0",
"@types/chrome": "^0.0.272",
"@types/debug": "^4.1.12",
"@types/jest-when": "^3.5.5",
"@types/node": "^20.14.9",
"@types/once": "^1.4.4",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/readable-stream": "^4.0.15",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@types/webextension-polyfill": "^0.10.7",
"@vitejs/plugin-react-swc": "^3.5.0",
"rollup":"4.34.8",
"autoprefixer": "^10.4.19",
"babel-jest": "^29.7.0",
"bignumber.js": "^4.0.4",
"buffer": "^6.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"debug": "^4.3.7",
"deepmerge": "^4.3.1",
"eslint": "^9.8.0",
"eslint-plugin-jest-dom": "^5.4.0",
"extension-port-stream": "^4.2.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-when": "^3.6.0",
"loglevel": "^1.9.2",
"lucide-react": "^0.400.0",
"mobx": "^6.13.0",
"mobx-react-lite": "^4.0.7",
"once": "^1.4.0",
"path": "^0.12.7",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.52.1",
"react-router-dom": "^6.24.1",
"readable-stream": "^4.5.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"semver": "^7.6.3",
"stdio-mock": "^1.2.0",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"tsd": "^0.31.2",
"type-fest": "^4.25.0",
"typescript": "^5.2.2",
"uuid": "^10.0.0",
"vite": "^5.2.0",
"vite-plugin-web-extension": "^4.1.6",
"webextension-polyfill": "^0.12.0",
"zod": "^3.23.8"
},
"keywords": [
"zond",
"blockchain",
"wallet",
"browser",
"extension",
"qrl",
"quantum",
"resistant",
"ledger",
"web3",
"crypto"
]
}