mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
26 lines
482 B
JSON
26 lines
482 B
JSON
![]() |
{
|
||
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||
|
"title": "Minimize size plugin manifest",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"plugins": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"minimize_size": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"shrink": { "type": "boolean" },
|
||
|
"zerofree": { "$ref": "#/definitions/absolute_path" }
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"definitions": {
|
||
|
"absolute_path": {
|
||
|
"type": "string",
|
||
|
"pattern": "^/[^\\0]+$"
|
||
|
}
|
||
|
}
|
||
|
}
|