-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.41 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
{
"name": "dolist",
"version": "1.0.3",
"description": "A modern and elegant Todo application for Mac",
"type": "commonjs",
"main": "dist/main/main/main.js",
"author": "TaskFlow Team",
"license": "MIT",
"scripts": {
"build": "vite build && tsc -p tsconfig.main.json && tsc -p tsconfig.preload.json",
"dist": "npm run build && electron-builder",
"dev": "concurrently \"vite\" \"tsc -p tsconfig.main.json --watch\" \"electron dist/main/main/main.js\""
},
"dependencies": {
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"framer-motion": "^10.16.16",
"lucide-react": "^0.294.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-hot-toast": "^2.4.1",
"sqlite3": "^5.1.6",
"tailwind-merge": "^2.1.0",
"zustand": "^4.4.7"
},
"build": {
"appId": "com.dolist.app",
"productName": "DoList",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"node_modules/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.productivity",
"target": [
{
"target": "dmg",
"arch": ["arm64"]
}
],
"icon": "assets/icon.icns",
"identity": null,
"gatekeeperAssess": false,
"hardenedRuntime": false
},
"dmg": {
"title": "DoList Installer",
"background": "assets/dmg-background.png"
}
}
}