@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 +2 -0
- package/package.json +1 -1
- package/schema/manifest.schema.json +17 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -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,
|