This repository has been archived by the owner on Sep 17, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
127 lines (127 loc) · 3.44 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "webrecorderplayer",
"productName": "Webrecorder Player",
"version": "1.8.0",
"description": "Webrecorder Player -- Standalone Web Archive Browser App",
"scripts": {
"build": "concurrently \"npm run build-main\" \"npm run build-frontend\"",
"build-frontend": "node build-frontend.js",
"build-frontend-dev": "cd webrecorder/frontend && yarn install; yarn run build-player-dev",
"build-main": "cross-env NODE_ENV=production DEBUG_PROD=false node --trace-warnings -r babel-register ./node_modules/webpack/bin/webpack --config webpack/webpack.config.js --display-error-details --colors",
"start": "cross-env NODE_ENV=production electron ./app",
"start-dev": "cross-env NODE_ENV=development electron -r babel-register ./app/main.dev",
"pack": "electron-builder --dir",
"release": "npm run build && electron-builder",
"dist": "npm run build && electron-builder --publish never",
"postinstall": "electron-builder install-app-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webrecorder/webrecorder-player.git"
},
"keywords": [
"warc",
"webarchives",
"electron",
"pywb",
"webrecorder"
],
"author": "webrecorder/rhizome",
"license": "Apache",
"bugs": {
"url": "https://github.com/webrecorder/webrecorder-player/issues"
},
"homepage": "https://github.com/webrecorder/webrecorder-player#readme",
"build": {
"productName": "Webrecorder Player",
"asar": true,
"appId": "org.webrecorder.webrecorderplayer",
"artifactName": "${name}-${version}.${ext}",
"files": [
"dist/",
"app.html",
"static/",
"main.prod.js",
"package.json",
"preload.js"
],
"extraResources": [
"python-binaries/",
"plugins"
],
"mac": {
"category": "public.app-category.utilities",
"target": "dmg"
},
"linux": {
"category": "Archiving;Utility;",
"target": [
"AppImage"
]
},
"win": {
"target": "portable"
},
"directories": {
"buildResources": "build",
"output": "dist"
},
"fileAssociations": [
{
"ext": "warc",
"name": "WARC File",
"description": "WARC File",
"role": "Viewer"
},
{
"ext": "warc.gz",
"name": "WARC File",
"description": "WARC File",
"role": "Viewer"
},
{
"ext": "arc",
"name": "ARC File",
"description": "ARC File",
"role": "Viewer"
},
{
"ext": "arc.gz",
"name": "ARC File",
"description": "ARC File",
"role": "Viewer"
},
{
"ext": "har",
"name": "HAR File",
"description": "HAR File",
"role": "Viewer"
}
]
},
"dependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"dat-node": "^3.5.13",
"electron": "6.1.4",
"electron-builder": "21.2.0",
"electron-debug": "^2.0.0",
"electron-devtools-installer": "^2.2.4",
"electron-publisher-s3": "^20.17.2",
"electron-window-state": "^5.0.3",
"node-sass": "^4.10.0",
"webpack": "3.10.0"
},
"devEngines": {
"node": ">==8.12.0",
"npm": ">=4.x",
"yarn": ">=0.21.3"
}
}