Skip to content

Instantly share code, notes, and snippets.

@jaunkst
Created July 1, 2019 23:35
Show Gist options
  • Save jaunkst/ce5485caad391d2b9a0d57e168185f11 to your computer and use it in GitHub Desktop.
Save jaunkst/ce5485caad391d2b9a0d57e168185f11 to your computer and use it in GitHub Desktop.
blokkr.schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"packs": {
"type": "object",
"properties": {
"behaviorPack": {
"properties": {
"name": {
"type": "string"
},
"client": {
"properties": {
"entry": {
"type": "string"
},
"out": {
"type": "string"
}
}
},
"server": {
"properties": {
"entry": {
"type": "string"
},
"out": {
"type": "string"
}
}
}
}
},
"postBuild": {
"type": "object",
"properties": {
"copy": {
"type": "array",
"properties": {
"from": {
"type": "string"
},
"to": {
"type": "string"
}
}
}
}
}
}
},
"outDir": {
"type": "string",
"description": "The path to install the mincraft addons"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment