-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.37 KB
/
package.json
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
{
"name": "photopea_no_ads",
"version": "1.0.0",
"description": "Alternativa gratuita a Photoshop",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"keywords": [
"photopea",
"adobe",
"photoshop",
"linux"
],
"author": "Maxi Zamorano <[email protected]>",
"homepage": "https://www.maxizamorano.com",
"license": "GPL-3.0",
"build": {
"appId": "com.maxizamorano.photopea-no-ads",
"productName": "Photopea",
"extraResources": [
{
"from": "icons/",
"to": "icons/"
},
{
"from": "src/extension/no-ads",
"to": "extension/no-ads"
},
{
"from": "data/",
"to": "data/"
}
],
"linux": {
"target": [
"deb",
"rpm",
"AppImage"
],
"category": "Graphics",
"maintainer": "Maxi Zamorano <[email protected]>",
"executableName": "photopea_no_ads",
"icon": "icons/photopea.png",
"desktop": {
"Name": "Photopea",
"Comment": "Alternativa gratuita a Photoshop",
"Icon": "/opt/Photopea/resources/icons/photopea.png",
"Terminal": "false",
"Type": "Application",
"Categories": "Graphics;Photography;"
}
}
},
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.13.3"
}
}