-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.61 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
{
"name": "dolist",
"productName": "DoList",
"version": "1.0.2",
"description": "DoList - 简洁高效的任务管理应用",
"main": "dist/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"start": "electron .",
"package": "npm run build && electron-builder --dir",
"make": "npm run build && electron-builder --win nsis zip",
"lint": "tsc --noEmit",
"test": "node scripts/run-tests.cjs",
"test:ui": "npm run build && node scripts/run-ui-tests.cjs",
"benchmark": "npm run build && node scripts/run-benchmark.cjs",
"benchmark:startup": "npm run build && node scripts/run-startup-benchmark.cjs current"
},
"keywords": [
"electron",
"react",
"task-manager",
"todo"
],
"author": "DoList Team",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^5.1.4",
"autoprefixer": "^10.4.17",
"electron": "^44.3.0",
"electron-vite": "^5.0.0",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^7.3.6",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@tanstack/react-virtual": "^3.14.11",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^3.3.1",
"framer-motion": "^11.0.3",
"lucide-react": "^0.316.0",
"react": "^18.2.0",
"react-day-picker": "^8.10.0",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.5.0",
"tailwind-merge": "^2.2.1",
"zustand": "^4.5.0",
"electron-builder": "^26.15.3",
"esbuild": "^0.25.12"
},
"dependencies": {
"sql.js": "^1.10.0"
},
"build": {
"appId": "com.dolist.desktop",
"productName": "DoList",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"resources/**/*",
"package.json"
],
"asar": true,
"win": {
"icon": "resources/icon.ico",
"target": [
"nsis",
"zip"
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false,
"createDesktopShortcut": false
}
}
}