-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.02 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
{
"name": "port587",
"version": "1.1.0",
"description": "Desktop email client for multiple senders — sending stats, sandbox testing, and more",
"main": "dist/electron/main.js",
"author": "Port587",
"license": "MIT",
"scripts": {
"dev": "unset ELECTRON_RUN_AS_NODE && electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps && node scripts/patch-dev-name.js",
"typecheck:electron": "tsc --noEmit -p tsconfig.node.json",
"typecheck:renderer": "tsc --noEmit -p tsconfig.web.json",
"typecheck": "npm run typecheck:electron && npm run typecheck:renderer",
"lint": "eslint . --ext .ts,.tsx",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"axios": "^1.13.0",
"date-fns": "^4.1.0",
"prismjs": "^1.30.0",
"react-router-dom": "^7.13.0",
"recharts": "^3.7.0",
"zustand": "^5.0.0"
},
"build": {
"appId": "app.port587.desktop",
"productName": "Port587",
"directories": {
"output": "release"
},
"mac": {
"icon": "resources/icon.icns",
"category": "public.app-category.developer-tools"
},
"win": {
"icon": "resources/icon.ico"
},
"linux": {
"icon": "resources/icon.png",
"category": "Development"
}
},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^4.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.0",
"electron": "^40.4.1",
"electron-builder": "^25.0.0",
"electron-vite": "^3.0.0",
"jsdom": "^28.1.0",
"postcss": "^8.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
}
}