-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.8 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.8 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
{
"name": "opengraph-viewer",
"version": "1.0.0",
"description": "Preview Open Graph social media cards for localhost sites",
"main": "main.js",
"author": "Frostist",
"license": "MIT",
"homepage": "https://github.com/Frostist/OpenGraphViewer",
"repository": {
"type": "git",
"url": "https://github.com/Frostist/OpenGraphViewer.git"
},
"scripts": {
"start": "node server.js",
"electron": "electron .",
"electron:dev": "NODE_ENV=development electron .",
"electron:build": "electron-builder",
"electron:build:mac": "electron-builder --mac",
"electron:build:win": "electron-builder --win",
"electron:build:linux": "electron-builder --linux"
},
"dependencies": {
"cheerio": "^1.0.0",
"express": "^4.18.2"
},
"devDependencies": {
"concurrently": "^9.2.1",
"electron": "^41.1.0",
"electron-builder": "^26.8.1",
"electron-reload": "^2.0.0-alpha.1"
},
"build": {
"appId": "com.frostist.opengraph-viewer",
"productName": "OpenGraph Viewer",
"copyright": "Copyright 2024 Frostist",
"directories": {
"buildResources": "build",
"output": "dist"
},
"files": [
"main.js",
"server.js",
"public/**/*",
"node_modules/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"dmg",
"zip"
],
"icon": "build/icon.icns",
"darkModeSupport": true
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "build/icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "build/icon.png",
"category": "Development"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}