-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.8 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.8 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
80
81
82
83
84
85
86
87
{
"name": "chimera",
"version": "0.2.1",
"private": true,
"type": "module",
"author": "Samuel Williams <samuel.williams@oriontransfer.co.nz>",
"description": "An Electron terminal emulator that can intercept HTTY side-channel chunks.",
"main": "Chimera/main.js",
"scripts": {
"prestart": "npm run build-release-notes",
"start": "electron .",
"predist": "npm run build-release-notes",
"dist": "electron-builder",
"prerelease": "npm run build-release-notes",
"release": "electron-builder --publish always",
"build-release-notes": "node scripts/build-release-notes.mjs",
"generate-icons": "node scripts/generate-icons.cjs",
"test": "node --test",
"test:e2e": "node --test test/Chimera.js"
},
"dependencies": {
"@socketry/htty": "^0.2.2",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"electron-updater": "^6.8.3",
"node-pty": "1.2.0-beta.12"
},
"devDependencies": {
"electron": "^41.4.0",
"electron-builder": "^26.0.12",
"markdown-it": "^14.1.1",
"playwright": "^1.59.1"
},
"build": {
"appId": "com.socketry.chimera",
"productName": "Chimera",
"directories": {
"output": "release"
},
"files": [
"Chimera/**/*",
"Chimera.js",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "icon.icns",
"target": [
"dmg",
"zip"
]
},
"win": {
"icon": "icon.ico",
"target": [
"nsis",
"zip"
]
},
"linux": {
"category": "Utility",
"icon": "icons",
"target": [
"AppImage",
"tar.gz"
]
},
"publish": [
{
"provider": "github",
"owner": "socketry",
"repo": "chimera",
"releaseType": "draft"
}
]
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"node-pty"
],
"minimumReleaseAgeExclude": [
"electron",
"@socketry/htty"
]
}
}