@pc-nexus/manifest 0.8.0-next.12 → 0.8.0-next.13

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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ # 0.8.0-next.13 (2026-09-11)
6
+
5
7
  # 0.8.0-next.12 (2026-09-10)
6
8
 
7
9
  # 0.8.0-next.11 (2026-09-02)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pc-nexus/manifest",
3
- "version": "0.8.0-next.12",
3
+ "version": "0.8.0-next.13",
4
4
  "description": "JSON Schema for Nexus app manifests",
5
5
  "main": "schema/manifest.schema.json",
6
6
  "scripts": {
@@ -3646,6 +3646,23 @@
3646
3646
  }
3647
3647
  },
3648
3648
  "additionalProperties": false
3649
+ },
3650
+ "environment": {
3651
+ "type": "object",
3652
+ "required": ["variables"],
3653
+ "properties": {
3654
+ "variables": {
3655
+ "type": "array",
3656
+ "items": {
3657
+ "type": "object",
3658
+ "required": ["key", "default"],
3659
+ "properties": { "key": { "type": "string" }, "default": { "type": "string" }, "description": { "type": "string" } }
3660
+ },
3661
+ "uniqueItemProperty": "key",
3662
+ "minItems": 1
3663
+ }
3664
+ },
3665
+ "additionalProperties": false
3649
3666
  }
3650
3667
  },
3651
3668
  "additionalProperties": false,