@nanobpm/nano-ide-ext-types 1.7.1 → 1.8.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +11 -0
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -303,6 +303,17 @@ export interface ExtManifest {
303
303
  * out of it being a pack journey.
304
304
  */
305
305
  tours?: TourSpec[];
306
+ /**
307
+ * app packs that front an out-of-process CLI (e.g. this Urban pack →
308
+ * `@nanobpm/urban`'s `urban`/`create-urban-app` bins): opt in to a guarded
309
+ * `npm install` inside the pack after it is fetched, so its runtime
310
+ * dependencies' `node_modules/.bin/*` are materialised (an `npm pack` tarball
311
+ * ships `package.json` but not `node_modules`). Mirrors the host's
312
+ * `ExtManifest.install_deps: bool`. The host installs `--omit=dev`
313
+ * `--ignore-scripts` (until the pack is trusted); default/absent is a pure
314
+ * pack+extract with no network install.
315
+ */
316
+ installDeps?: boolean;
306
317
  }
307
318
  /**
308
319
  * A named gate from the console's shared precondition library
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nanobpm/nano-ide-ext-types",
3
- "version": "1.7.1",
3
+ "version": "1.8.0",
4
4
  "description": "TypeScript types for the nano-ide.ext.json extension manifest (ADR 0007).",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "https://github.com/jwulf/nano-ide.git",
12
+ "url": "git+https://github.com/jwulf/nano-ide.git",
13
13
  "directory": "packages/ext-types"
14
14
  },
15
15
  "main": "./dist/index.js",