-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.54 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "veshell",
"productName": "VEShell",
"version": "1.8.0",
"description": "A reliable PowerShell terminal with rock-solid mouse/keyboard cut, copy, and paste, plus built-in learning tools: ClaudeWhat explanations and a Verbose run mode.",
"author": "victorycomputersystems@gmail.com",
"license": "GPL-3.0-or-later",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"patch-build": "node scripts/patch-node-gyp.js && node scripts/patch-winpty.js",
"rebuild": "npm run patch-build && electron-rebuild -f -w node-pty",
"postinstall": "node scripts/postinstall.js",
"test": "npm run test:chain && npm run test:e2e && npm run test:stress && npm run test:verbose",
"test:chain": "tests\\run-chain.cmd",
"test:e2e": "tests\\run-e2e.cmd",
"test:stress": "tests\\run-stress.cmd",
"test:verbose": "tests\\run-verbose.cmd",
"pack:dir": "electron-builder --dir",
"pack:portable": "electron-builder --win portable",
"pack:installer": "electron-builder --win nsis",
"dist": "electron-builder --win nsis portable"
},
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"node-pty": "^1.0.0"
},
"devDependencies": {
"@electron/rebuild": "^3.7.0",
"electron": "^33.0.0",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "com.victorycomputersystems.veshell",
"productName": "VEShell",
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"src/**/*",
"node_modules/**/*",
"package.json",
"config.json",
"!node_modules/node-pty/build/Release/*.{pdb,iobj,ipdb,exp,lib}",
"!node_modules/node-pty/build/Release/obj/**",
"!**/*.tmp.*",
"!src/**/*.tmp.*"
],
"asarUnpack": [
"node_modules/node-pty/**/*"
],
"win": {
"icon": "build/icon.ico",
"target": [
{ "target": "nsis", "arch": ["x64"] },
{ "target": "portable", "arch": ["x64"] }
]
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"installerHeaderIcon": "build/icon.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "VEShell",
"runAfterFinish": true,
"artifactName": "VEShell-Setup-${version}.${ext}"
},
"portable": {
"artifactName": "VEShell-Portable-${version}.${ext}"
}
}
}