@todesktop/cli 1.21.0 → 1.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -328,6 +328,19 @@ export interface LinuxConfigProperty {
328
328
  * Additional command-line arguments to pass to the executable in the Linux .desktop file Exec line.
329
329
  */
330
330
  executableArgs?: string[];
331
+ /**
332
+ * Configuration for Debian (.deb) packaging.
333
+ */
334
+ deb?: {
335
+ /**
336
+ * Additional package dependencies to append to ToDesktop's default .deb dependencies.
337
+ */
338
+ additionalDepends?: string[];
339
+ /**
340
+ * The list of package dependencies for the .deb package. This overwrites ToDesktop's default dependency list and linux.deb.additionalDepends.
341
+ */
342
+ depends?: string[];
343
+ };
331
344
  /**
332
345
  * This option allows you to configure whether your app should run in a sandboxed environment.
333
346
  */
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "name": "@todesktop/cli",
7
- "version": "1.21.0",
7
+ "version": "1.22.0",
8
8
  "license": "MIT",
9
9
  "author": "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
10
10
  "homepage": "https://todesktop.com/cli",
@@ -453,6 +453,27 @@
453
453
  ["--enable-features=UseOzonePlatform", "--ozone-platform=x11"]
454
454
  ]
455
455
  },
456
+ "deb": {
457
+ "type": "object",
458
+ "description": "Configuration for Debian (.deb) packaging.",
459
+ "additionalProperties": false,
460
+ "properties": {
461
+ "additionalDepends": {
462
+ "type": "array",
463
+ "items": {
464
+ "type": "string"
465
+ },
466
+ "description": "Additional package dependencies to append to ToDesktop's default .deb dependencies."
467
+ },
468
+ "depends": {
469
+ "type": "array",
470
+ "items": {
471
+ "type": "string"
472
+ },
473
+ "description": "The list of package dependencies for the .deb package. This overwrites ToDesktop's default dependency list and linux.deb.additionalDepends."
474
+ }
475
+ }
476
+ },
456
477
  "noSandbox": {
457
478
  "type": "boolean",
458
479
  "description": "This option allows you to configure whether your app should run in a sandboxed environment.",