-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 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
44
45
46
47
48
49
{
"name": "amishell",
"version": "1.0.0",
"description": "Interactive shell for the WinUAE and FS-UAE Amiga emulators.",
"main": "out/main.js",
"license": "MIT",
"keywords": [
"amiga", "commodore",
"shell", "cli", "interactive", "console", "terminal", "newshell", "newcli",
"emulators", "fsuae", "fs-uae", "winuae", "win-uae",
"retro", "retrodev",
"crossdev",
"68k", "m68k",
"vasm", "asmone", "devpac", "asmotor",
"sockets",
"typescript"
],
"author": "xeleh <jmoreno@xeleh.com>",
"homepage": "https://xeleh.com",
"repository": {
"type": "git",
"url": "https://github.com/xeleh/amishell.git"
},
"bugs": {
"url": "https://github.com/xeleh/amishell/issues"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "",
"test": ""
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.53",
"typescript": "^2.6.1"
},
"dependencies": {
"command-line-args": "^5.0.2"
},
"files": [
"out/[^.]*.js",
"scripts/[^.]*"
],
"bin": {
"amishell": "out/main.js"
}
}