-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathpackage.json
78 lines (78 loc) · 1.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "gramateria",
"version": "1.0.6",
"private": true,
"description": "Open source drag and drop website builder with bootstrap 5",
"main": "index.js",
"scripts": {
"dev": "mix",
"prod": "mix --production",
"watch": "mix watch",
"start": "electron index.js",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"keywords": [
"Gramateria",
"gramateria",
"webite",
"grapejs",
"builder",
"drag and drop"
],
"author": {
"name": "Ronald",
"email": "[email protected]",
"url": "https://www.augusthost.com"
},
"build": {
"productName": "gramateria",
"appId": "com.augusthost.gramateria",
"directories": {
"output": "export",
"buildResources": "build"
},
"win": {
"asar": false,
"target": "nsis",
"icon": "icons/icon.ico"
},
"mac": {
"icon": "icons/icon.png"
},
"linux": {
"icon": "icons/icon.png",
"target": [
"deb",
"rpm",
"appimage",
"tar.gz"
]
},
"nsis": {
"installerIcon": "icons/icon.ico",
"installerHeaderIcon": "icons/icon.ico",
"deleteAppDataOnUninstall": true
},
"files":[
"*.js",
"build",
"node_modules"
]
},
"license": "MIT",
"devDependencies": {
"asar": "^0.14.6",
"electron": "^11.5.0",
"resolve-url-loader": "^4.0.0",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"electron-builder": "^22.10.5"
},
"dependencies": {
"file-saver": "^2.0.5",
"jszip": "^3.6.0",
"laravel-mix": "^6.0.25",
"notyf": "^3.10.0"
}
}