-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.44 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
{
"name": "domplayer",
"version": "1.0.0",
"description": "DomPlayer simple Video Player for Half Dome or exhibition",
"homepage": "https://niemes.info",
"author": "Niemeskern Kévin <kevin@niemes.info>",
"main": "main.js",
"scripts": {
"install": "electron-rebuild",
"pack": "electron-builder -mwl --publish never",
"start": "electron . --disable-http-cache",
"test": "echo \"Error: no test specified\" && exit 1",
"setup": "npm install && ./node_modules/.bin/electron-rebuild",
"postinstall": "electron-builder install-app-deps",
"package-mac": "electron-builder --macos",
"package-win": "electron-builder --win",
"package-linux": "electron-builder --linux deb"
},
"build": {
"appId": "com.example.app",
"copyright": "Copyleft © 2020 ${author}",
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"mac": {
"target": [
{
"target": "zip",
"arch": [
"x64"
]
}
]
},
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64"
]
}
]
}
},
"repository": "https://niemes.info/software",
"keywords": [
"dom",
"half dome",
"videoplayer",
"art",
"niemes"
],
"license": "CC0-1.0",
"devDependencies": {
"electron": "^19.0.3"
}
}