-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.4 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
{
"name": "task-smasher",
"version": "1.0.0",
"description": "Task Smasher — A powerful Eisenhower Matrix daily planner with Typora-like WYSIWYG editing",
"author": "User",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"build:win": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false CSC_LINK=\"\" tsc && vite build && electron-builder",
"serve": "electron ."
},
"build": {
"appId": "com.tasksmasher.app",
"productName": "Task Smasher",
"forceCodeSigning": false,
"files": [
"dist/**/*",
"dist-electron/**/*",
"build/**/*",
"package.json",
"!node_modules/**/*",
"!src/**/*",
"!.agents/**/*",
"!.agent/**/*",
"!.git/**/*",
"!release/**/*",
"!*.md",
"!*.txt"
],
"directories": {
"output": "release"
},
"win": {
"target": "portable",
"icon": "build/icon.png",
"sign": null,
"signingHashAlgorithms": null
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"cross-env": "^10.1.0",
"electron": "^29.0.0",
"electron-builder": "^24.9.1",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-plugin-electron": "^0.28.2",
"vite-plugin-electron-renderer": "^0.14.6"
},
"dependencies": {
"@toast-ui/editor": "^3.2.2",
"@toast-ui/editor-plugin-color-syntax": "^3.1.0"
}
}