-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.26 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.26 KB
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
{
"name": "amethystxmr",
"version": "1.0.0",
"description": "Amethyst XMR is a web-based Monero wallet",
"license": "ISC",
"author": "",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"test": "npm run test:e2e",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:install": "playwright install chromium",
"dev": "vite",
"build": "vite build",
"native:dev": "npm run build && electron .",
"native:pack": "npm run build && electron-builder --dir",
"native:dist": "npm run build && electron-builder --publish never",
"native:dist:ci": "electron-builder --publish never",
"logo-gen": "./scripts/generate-pwa-icons.sh",
"preview": "vite preview",
"lint": "eslint web-src monero-wasm-module vite.config.js",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"build": {
"appId": "org.amethystxmr.wallet",
"productName": "AmethystXMR",
"directories": {
"output": "dist-native"
},
"files": [
"built-web/**/*",
"electron/**/*",
"package.json"
],
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"win": {
"target": [
"portable"
]
},
"linux": {
"target": [
"AppImage"
]
},
"mac": {
"target": [
"dmg"
]
}
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource/inter": "^5.2.8",
"@tailwindcss/vite": "^4.1.18",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@zxing/browser": "^0.1.5",
"clsx": "^2.1.1",
"install": "^0.13.0",
"jszip": "^3.10.1",
"qrcode.react": "^4.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-swipeable": "^7.0.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-cross-origin-isolation": "^0.1.6"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@playwright/test": "^1.58.2",
"@vitejs/plugin-react": "^5.1.4",
"electron": "^37.10.3",
"electron-builder": "^26.8.1",
"eslint": "^9.39.3",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"typescript-eslint": "^8.56.0"
}
}