-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.82 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
{
"name": "generators",
"version": "1.2.0-beta.1",
"description": "A series of mini-applications that all create a library of generator application",
"main": "main.js",
"license": "UNLICENSED",
"private": true,
"author": {
"name": "Virus5600",
"email": "satchi5600@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Virus5600/Generators"
},
"keywords": [
"Electron",
"JavaScript",
"Generators",
"Generator",
"Virus5600"
],
"bugs": {
"url": "https://github.com/Virus5600/Generators/issues"
},
"homepage": "https://github.com/Virus5600/Generators#readme",
"exports": {
"./node_modules/": "./node_modules"
},
"scripts": {
"mix": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"dev": "electron .",
"build": "npm run prod && node ./scripts/rename_setup.js && electron-builder -w --publish never",
"build-portable": "npm run prod && node ./scripts/rename_portable.js && electron-builder -w portable",
"publish": "npm run prod && node ./scripts/rename_setup.js && electron-builder -w --publish always && node ./scripts/rename_portable.js && electron-builder -w portable --publish=onTagOrDraft && node ./scripts/rename_setup.js",
"deploy": "npm run publish",
"prod": "npm run production",
"production": "mix --production"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.2.0",
"@sweetalert2/theme-dark": "^5.0.15",
"animate.css": "^4.1.1",
"autoprefixer": "10.4.5",
"bootstrap": "^5.3.1",
"cross-env": "^7.0.3",
"electron": "^23.2.0",
"electron-builder": "^24.1.1",
"jquery": "^3.6.1",
"jquery-ui": "^1.13.2",
"jspdf": "^2.5.1",
"laravel-mix": "^6.0.49",
"normalize.css": "^8.0.1",
"randexp": "^0.5.3",
"resolve-url-loader": "^5.0.0",
"sass": "^1.60.0",
"sass-loader": "^13.2.1",
"semver": "^7.5.4",
"sweetalert2": "^10.16.9",
"textfit": "^2.4.0",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@electron/remote": "^2.1.0",
"electron-log": "^5.0.0",
"electron-reloader": "^1.2.3",
"electron-updater": "^5.3.0"
},
"files": [
"!*",
"!**/*",
"main.js",
"public/**/*"
],
"build": {
"appId": "com.virus5600.generators",
"productName": "Generators",
"artifactName": "${productName}_${version}_setup.${ext}",
"copyright": "Copyright (c) 2023 ${author}",
"generateUpdatesFilesForAllChannels": false,
"target": [
"nsis"
],
"directories": {
"output": "dist"
},
"extraResources": [
"src/resources/**/*"
],
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false,
"createDesktopShortcut": false,
"menuCategory": true
},
"publish": [
{
"provider": "github",
"owner": "Virus5600",
"repo": "Generators"
}
]
}
}