-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 876 Bytes
/
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
{
"name": "web-kiosk",
"version": "0.0.4",
"description": "Simple web-kiosk application for linux",
"main": "main.js",
"scripts": {
"start": "electron .",
"start:dev": "electron . -- url=https://google.com?name=david",
"build": "npm run clean && electron-builder --linux snap",
"clean": "rm -rf dist",
"dev:install": "snap install dist/*.snap --dangerous"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidtoska/web-kiosk.git"
},
"keywords": [
"snap",
"kiosk",
"web"
],
"author": "david toska",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidtoska/web-kiosk/issues"
},
"homepage": "https://github.com/davidtoska/web-kiosk#readme",
"dependencies": {},
"devDependencies": {
"electron": "^19.0.3",
"electron-builder": "^23.0.3",
"prettier": "^2.6.2"
}
}