-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 996 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
35
36
37
{
"name": "livre",
"version": "1.1.2",
"description": "An ebook reader written with Electron",
"main": "js/src/main.js",
"scripts": {
"start": "npm run build && electron .",
"package": "electron-builder",
"build": "webpack",
"prepare": "git submodule init && git submodule update && (cd ./js/src/lib/epub.js; npm install)",
"prettify": "prettier --tab-width 4 --single-quote --write"
},
"build": {
"appId": "com.livrereader.livre",
"mac": {
"category": "public.app-category.utilities"
}
},
"repository": {
"url": "https://github.com:livrereader/livre.git",
"type": "git"
},
"author": "Jeremy Dormitzer <[email protected]>",
"license": "MIT",
"devDependencies": {
"electron": "^1.6.10",
"electron-builder": "^19.16.0",
"electron-packager": "^8.3.0",
"prettier": "^1.5.2",
"webpack": "^3.2.0"
},
"dependencies": {
"jszip": "^3.1.3",
"localforage": "^1.5.0",
"rsvp": "^3.5.0"
}
}