-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.21 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
{
"name": "auto-inbox",
"version": "0.1.0",
"description": "Open-source AI inbox assistant with human-in-the-loop reply review.",
"type": "module",
"main": "dist-electron/main.cjs",
"author": "IAZARA",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/IAZARA/Auto-Inbox.git"
},
"bugs": {
"url": "https://github.com/IAZARA/Auto-Inbox/issues"
},
"homepage": "https://github.com/IAZARA/Auto-Inbox#readme",
"keywords": [
"ai",
"email",
"inbox",
"gmail",
"openai",
"automation",
"human-in-the-loop",
"react",
"typescript",
"vite"
],
"scripts": {
"dev": "vite --host 127.0.0.1",
"dev:web": "vite --host 127.0.0.1 --port 5173 --strictPort",
"dev:desktop": "concurrently -k \"npm:dev:web\" \"wait-on http://127.0.0.1:5173 && cross-env VITE_DEV_SERVER_URL=http://127.0.0.1:5173 electron .\"",
"test": "vitest run",
"build": "tsc --noEmit && npm run build:electron && vite build",
"build:electron": "tsc -p tsconfig.electron.json",
"preview": "vite preview --host 127.0.0.1",
"preview:desktop": "npm run build && electron .",
"dist:desktop": "npm run build && cross-env CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --win nsis --publish never"
},
"dependencies": {
"lucide-react": "^0.468.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.0.4",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^42.2.0",
"electron-builder": "^26.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vitest": "^4.1.7",
"wait-on": "^9.0.10"
},
"build": {
"appId": "com.iazara.autoinbox",
"productName": "Auto-inbox",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json"
],
"win": {
"target": [
"nsis"
],
"signAndEditExecutable": false,
"artifactName": "Auto-inbox-Setup-${version}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}