-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "lectrote",
"productName": "Lectrote",
"version": "1.5.2",
"lectroteVersion": "1.5.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": "^31.7.0"
},
"devDependencies": {
"electron-packager": "^17.1.0",
"@electron/universal": "^1.0"
}
}