-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.05 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "ticktaskpro",
"version": "1.0.1",
"description": "Secure Offline Task Manager with Customizable Eisenhower Matrix",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build && electron-builder",
"build:mac": "vite build && electron-builder --mac --arm64",
"build:win": "vite build && electron-builder --win --x64",
"dist": "vite build && electron-builder",
"dist:mac": "vite build && electron-builder --mac --arm64 --publish never",
"dist:win": "vite build && electron-builder --win --x64 --publish never",
"publish:mac": "vite build && electron-builder --mac --arm64 --publish always",
"publish:win": "vite build && electron-builder --win --x64 --publish always",
"preview": "vite preview",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"typecheck": "tsc --noEmit --skipLibCheck",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.ticktaskpro.app",
"productName": "TickTaskPro",
"asar": true,
"asarUnpack": "**/*.node",
"directories": {
"output": "/tmp/ticktaskpro-release"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"assets/**/*"
],
"extraResources": [
{
"from": "assets/icons",
"to": "icons"
}
],
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
}
],
"category": "public.app-category.productivity",
"icon": "assets/icons/icon.icns",
"artifactName": "${productName}-${version}-mac-${arch}.${ext}",
"hardenedRuntime": false
},
"win": {
"target": [
{
"target": "zip",
"arch": [
"x64"
]
}
],
"icon": "assets/icons/icon.ico",
"artifactName": "${productName}-${version}-win-${arch}.${ext}"
},
"linux": {
"icon": "assets/icons",
"artifactName": "${productName}-${version}-linux-${arch}.${ext}"
},
"publish": {
"provider": "github",
"releaseType": "release"
}
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"better-sqlite3": "^12.5.0",
"chrono-node": "^2.7.7",
"electron-store": "^10.0.0",
"framer-motion": "^11.11.17",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"uuid": "^10.0.0",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/react": "^18.3.12",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"electron": "^35.7.5",
"electron-builder": "^26.0.12",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"vite": "^7.2.6",
"vite-plugin-electron": "^0.28.8",
"vite-plugin-electron-renderer": "^0.14.6",
"wait-on": "^8.0.1"
}
}