-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.35 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
{
"name": "LightSpread",
"version": "1.3.0",
"description": "Present your pictures in an audience friendly way",
"main": "main.js",
"scripts": {
"build": "electron-builder",
"deploy": "webpack --mode=production --config web/webpack.config.js && webpack --mode=production --config webpack.config.js && electron-builder",
"postinstall": "electron-builder install-app-deps",
"publish": "webpack --mode=production --config web/webpack.config.js && webpack --mode=production --config webpack.config.js && electron-builder -p always",
"start": "env ELECTRON_IS_DEV=1 electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm-run-all -p webpack-watch webpack:web-watch",
"webpack": "webpack --mode=development --config webpack.config.js",
"webpack-watch": "webpack --mode=development --config webpack.config.js --watch",
"webpack:web": "webpack --mode=development --config web/webpack.config.js",
"webpack:web-watch": "webpack --mode=development --config web/webpack.config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Art4/lightspread.git"
},
"author": "Artur Weigandt",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Art4/lightspread/issues"
},
"homepage": "https://github.com/Art4/lightspread#readme",
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"autoprefixer": "^10.3.3",
"bootstrap": "^5.1.0",
"css-loader": "^6.2.0",
"electron": "^13.2.2",
"electron-builder": "^22.11.7",
"file-loader": "^6.2.0",
"lightgallery": "^2.2.0",
"mini-css-extract-plugin": "^2.2.0",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"postcss-loader": "^6.1.1",
"precss": "^4.0.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"express": "^4.17.1",
"sharp": "^0.29.0"
},
"build": {
"appId": "org.electron.lightspread",
"win": {
"icon": "img/lightspread-256.png"
},
"nsis": {
"oneClick": true,
"artifactName": "${productName} ${version}.${ext}",
"deleteAppDataOnUninstall": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"publish": {
"provider": "github",
"private": false
}
}
}
}