forked from erkyrath/lectrote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "lectrote",
"productName": "Lectrote",
"version": "1.3.2",
"lectroteVersion": "1.3.2",
"description": "Lectrote: the Glulx/Ink IF interpreter in an Electron shell",
"main": "main.js",
"bin": {
"lectrote": "./cli.sh"
},
"scripts": {
"start": "electron .",
"preinstall": "if [ -f quixe/LICENSE ]; then echo Quixe already installed; elif [ -d .git ]; then git submodule init; git submodule update; else git clone https://github.com/erkyrath/quixe.git; fi"
},
"repository": {
"type": "git",
"url": "https://github.com/erkyrath/lectrote.git"
},
"keywords": [
"interactive fiction",
"interpreter",
"quixe",
"glkote",
"glulx",
"parchment",
"zcode",
"zmachine",
"ink"
],
"author": "Andrew Plotkin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/erkyrath/lectrote/issues"
},
"homepage": "https://github.com/erkyrath/lectrote",
"dependencies": {
"electron": "1.8.7"
},
"devDependencies": {
"electron-packager": "^12.0.0"
},
"optionalDependencies": {
"appdmg": "^0.5.2"
}
}