@datorama/akita
Version:
State Management Tailored-Made for JS Applications
43 lines • 988 B
JSON
{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsAkitaStore",
"title": "Akita Store Options Schema",
"type": "object",
"properties": {
"name": {
"description": "The name of the store.",
"type": "string",
"alias": "s",
"$default": {
"$source": "argv",
"index": 0
}
},
"path": {
"type": "string",
"format": "path",
"description": "The path to create the store.",
"visible": false
},
"spec": {
"type": "boolean",
"description": "Specifies if a spec file is generated.",
"default": false
},
"flat": {
"type": "boolean",
"default": false,
"description": "Flag to indicate if a dir is created."
},
"dirName": {
"type": "string",
"default": "state",
"description": "Specifies the name of the generated folder"
},
"feature": {
"type": "boolean",
"default": false
}
},
"required": []
}