-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "boysen",
"version": "1.3.0",
"description": "A modern and lightweight PowerShell emulator",
"main": "src/ts-build/main.js",
"scripts": {
"start": "electron . --ignore-gpu-blacklist",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "https://github.com/avocadianmage/boysen"
},
"author": "avocadianmage",
"license": "GPL-3.0",
"devDependencies": {
"electron": "^2.0.11",
"electron-builder": "^20.28.4"
},
"dependencies": {
"@types/dragula": "^2.1.33",
"ajv": "^6.0.0",
"dragula": "^3.7.2",
"electron-tabs": "^0.9.4",
"electron-titlebar": "0.0.3",
"node-pty": "^0.7.6",
"xterm": "^3.8.0"
},
"build": {
"appId": "com.electron.boysen",
"win": {
"target": "nsis",
"icon": "assets/terminal.ico"
},
"nsis": {
"include": "build/installer.nsh",
"warningsAsErrors": false
},
"extraFiles": [
"powershell/**/*"
]
}
}