-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 2.67 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 2.67 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "notion-electron",
"version": "1.0.0",
"description": "Electron wrapper for Notion",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux",
"dist": "electron-builder --publish=never",
"pack": "electron-builder --dir",
"postinstall": "electron-builder install-app-deps"
},
"keywords": ["electron", "notion", "desktop", "wrapper", "productivity"],
"author": "Community",
"license": "MIT",
"homepage": "https://github.com/DevFaraaz/notion",
"repository": {
"type": "git",
"url": "https://github.com/DevFaraaz/notion.git"
},
"bugs": {
"url": "https://github.com/DevFaraaz/notion/issues"
},
"devDependencies": {
"electron": "^27.0.0",
"electron-builder": "^24.6.4"
},
"build": {
"appId": "com.electron.notion",
"productName": "Notion",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"index.html",
"preload.js",
"assets/**/*",
"node_modules/**/*"
],
"extraResources": [
{
"from": "assets/",
"to": "assets/",
"filter": ["**/*"]
}
],
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/icon.icns",
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
},
{
"target": "zip",
"arch": ["x64", "arm64"]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64", "ia32"]
},
{
"target": "portable",
"arch": ["x64", "ia32"]
}
],
"icon": "assets/icon.ico"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": ["x64"]
},
{
"target": "deb",
"arch": ["x64"]
},
{
"target": "rpm",
"arch": ["x64"]
}
],
"icon": "assets/icon.png",
"category": "Office"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"dmg": {
"title": "Notion",
"backgroundColor": "#ffffff",
"window": {
"width": 540,
"height": 400
},
"contents": [
{
"x": 140,
"y": 200,
"type": "file"
},
{
"x": 400,
"y": 200,
"type": "link",
"path": "/Applications"
}
]
}
}
}