-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.32 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
{
"name": "liveboard",
"version": "2.0.0",
"description": "Liveboard transforms your desktop into an endless canvas, making your background a living space for creativity, visual notes, and spontaneous inspiration. Always on your desktop, liveboard makes creativity just a click away!",
"author": {
"name": "MadAvidCoder",
"email": "183250896+MadAvidCoder@users.noreply.github.com"
},
"type": "commonjs",
"homepage": ".",
"main": "main/electron.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"electron": "electron .",
"package": "electron-builder"
},
"build": {
"appId": "com.madavidcoder.liveboard",
"productName": "Liveboard",
"copyright": "Copyright © 2025 MadAvidCoder",
"extends": null,
"publish": null,
"files": [
"package.json",
"build/**/*",
"main/electron.js",
"main/preload.js",
"tray_icon.*",
"!node_modules/fsevents/**"
],
"directories": {
"output": "dist"
},
"win": {
"target": [
"nsis"
],
"icon": "tray_icon.ico"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowElevation": false,
"allowToChangeInstallationDirectory": false,
"createDesktopShortcut": false,
"createStartMenuShortcut": true,
"runAfterFinish": true
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "tray_icon.icns"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "tray_icon.png"
}
},
"devDependencies": {
"@types/css-modules": "^1.0.5",
"electron": "28.2.3",
"electron-builder": "^26.0.12",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"auto-launch": "^5.0.6",
"konva": "^9.3.22",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-icons": "^5.5.0",
"react-konva": "^19.0.10",
"react-markdown": "^10.1.0",
"react-scripts": "^5.0.1",
"remark-gfm": "^4.0.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "20.x"
}
}