mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-12-13 03:38:24 -05:00
19 lines
315 B
JSON
Executable File
19 lines
315 B
JSON
Executable File
{
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
"type": "object",
|
|
"required": [
|
|
"brew",
|
|
"brew-cask"
|
|
],
|
|
"properties": {
|
|
"brew": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
},
|
|
"brew-cask": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
}
|
|
}
|
|
}
|