-
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.37 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.37 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
{
"desktopName": "yournotes.desktop",
"name": "yournotes",
"version": "0.0.11",
"author": "BlazinSan <hammau05@gmail.com>",
"homepage": "https://github.com/BlazinSan/YourNotes",
"private": true,
"type": "module",
"main": "electron-main.cjs",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron": "wait-on tcp:5173 && electron .",
"electron:dev": "concurrently -k \"npm run dev\" \"npm run electron\"",
"package": "npm run build && electron-builder -w",
"package:linux": "npm run build && electron-builder -l"
},
"devDependencies": {
"@capacitor/cli": "^8.4.2",
"chrome-remote-interface": "^0.34.0",
"concurrently": "^10.0.3",
"electron": "^43.1.1",
"electron-builder": "^26.15.3",
"vite": "^8.1.4",
"wait-on": "^9.0.10"
},
"dependencies": {
"@capacitor/android": "^8.4.2",
"@capacitor/core": "^8.4.2",
"@capacitor/file-viewer": "^2.0.1",
"@capacitor/filesystem": "^8.1.2",
"@capacitor/preferences": "^8.0.1",
"@capacitor/screen-orientation": "^8.0.1",
"@capacitor/share": "^8.0.1",
"aws4fetch": "^1.0.20",
"convex": "^1.42.2",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.1",
"marked": "^18.0.6",
"three": "^0.185.1"
},
"build": {
"appId": "com.raj.yournotes",
"productName": "YourNotes",
"directories": {
"output": "release"
},
"win": {
"icon": "build/icon.ico",
"target": [
"nsis",
"portable"
]
},
"nsis": {
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico"
},
"mac": {
"icon": "icon.png",
"target": [
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.productivity"
},
"linux": {
"executableName": "yournotes",
"icon": "build/icons",
"target": [
"AppImage",
"deb",
"pacman",
"rpm"
],
"category": "Office",
"syncDesktopName": true,
"desktop": {
"entry": {
"StartupWMClass": "yournotes",
"Icon": "/usr/share/icons/hicolor/512x512/apps/yournotes.png"
}
}
},
"files": [
"dist/**/*",
"electron-main.cjs",
"preload.cjs",
"icon.png",
"!node_modules/**"
]
}
}