-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.51 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.51 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "chimera",
"version": "0.4.5",
"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-releases",
"start": "electron .",
"predist": "npm run build-releases",
"dist": "electron-builder",
"prerelease": "npm run build-releases",
"release": "electron-builder --publish always",
"version": "node scripts/prepare-version-releases.mjs && npm run build-releases && git add releases.md help/releases.html",
"build-releases": "node scripts/build-releases.mjs",
"generate-icons": "node scripts/generate-icons.cjs",
"test": "node --test",
"test:e2e": "node --test test/Chimera/Application.js"
},
"dependencies": {
"@socketry/htty": "^0.5.3",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"electron-updater": "^6.8.3",
"lit": "^3.3.2",
"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": [
"bin/**/*",
"Chimera/**/*",
"help/**/*",
"Chimera.js",
"package.json"
],
"asarUnpack": [
"bin/**/*",
"Chimera/BookmarksController.js",
"Chimera/Configuration.js",
"node_modules/@lit-labs/ssr-dom-shim/**/*",
"node_modules/@lit/reactive-element/**/*",
"node_modules/@socketry/htty/**/*",
"node_modules/@types/trusted-types/**/*",
"node_modules/lit/**/*",
"node_modules/lit-element/**/*",
"node_modules/lit-html/**/*"
],
"mac": {
"artifactName": "Chimera-macOS-${arch}.${ext}",
"category": "public.app-category.developer-tools",
"icon": "icon.icns",
"target": [
"dmg",
"zip"
]
},
"win": {
"artifactName": "Chimera-Windows-${arch}.${ext}",
"icon": "icon.ico",
"target": [
"nsis",
"zip"
]
},
"linux": {
"artifactName": "Chimera-Linux-${arch}.${ext}",
"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"
]
}
}