-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.99 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
{
"name": "timetable",
"productName": "Timetable",
"private": false,
"version": "0.3.3",
"description": "A local Windows desktop planner for courses, tasks, goals, memos, countdowns, and desktop widgets.",
"author": "Timetable Local Builder",
"main": "out/main/index.js",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"typecheck": "tsc --noEmit -p tsconfig.app.json && tsc --noEmit -p tsconfig.node.json",
"lint": "eslint .",
"test": "vitest run --coverage",
"preview": "electron-vite preview",
"pack:win": "node scripts/run-electron-builder-win.mjs --dir",
"dist:win": "node scripts/run-electron-builder-win.mjs nsis",
"dist:portable": "node scripts/run-electron-builder-win.mjs portable",
"release:win": "node scripts/run-electron-builder-win.mjs nsis portable"
},
"dependencies": {
"chinese-days": "^1.5.7",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^1.9.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.2",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/coverage-v8": "^4.1.5",
"electron": "^41.3.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"jsdom": "^29.0.2",
"tailwindcss": "^4.2.4",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^7.1.12",
"vitest": "^4.1.5"
},
"repository": {
"type": "git",
"url": "https://github.com/Evander764/Timetable.git"
},
"bugs": {
"url": "https://github.com/Evander764/Timetable/issues"
},
"homepage": "https://github.com/Evander764/Timetable#readme"
}