mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 16:59:01 +09:00
37 lines
780 B
JSON
37 lines
780 B
JSON
[
|
|
{
|
|
"namespace": "manifest",
|
|
"types": [
|
|
{
|
|
"id": "NativeHostManifest",
|
|
"type": "object",
|
|
"description": "Represents a native host manifest file",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"pattern": "^\\w+(\\.\\w+)*$"
|
|
},
|
|
"description": {
|
|
"type": "string"
|
|
},
|
|
"path": {
|
|
"type": "string"
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"stdio"
|
|
]
|
|
},
|
|
"allowed_extensions": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"$ref": "manifest.ExtensionID"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|