-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 821 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 821 Bytes
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
{
"name": "dotnet-runner",
"version": "1.0.0",
"description": "Electron application to launch dotnet applications",
"main": "startup.js",
"scripts": {
"start": "electron .",
"build": "build --win",
"ship": "build --win -p always",
"rebuild": "electron-rebuild -f -w node-pty"
},
"author": "Stephen Cooper",
"license": "MIT",
"repository": "https://github.com/ste2425/DotnetRunner",
"devDependencies": {
"electron": "^4.0.8",
"electron-builder": "^20.39.0",
"electron-rebuild": "^1.8.4"
},
"dependencies": {
"bootstrap-css-only": "^4.3.1",
"electron-is-dev": "^1.0.1",
"electron-updater": "^4.0.6",
"markdown-it": "^8.4.2",
"markdown-it-attrs": "^2.3.3",
"node-pty": "^0.8.1",
"xterm": "^3.14.1"
},
"files": [
"ReleaseNotes.md"
]
}