feat(assets): bundle runtime assets and vendor dependencies

This commit is contained in:
2026-02-22 21:43:43 -08:00
parent d3fd47f0ec
commit ae95601698
429 changed files with 165389 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
{
"$id": "dictionaryKanjiMetaBankV3",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"frequency": {
"oneOf": [
{
"type": ["string", "number"]
},
{
"type": "object",
"additionalProperties": false,
"required": [
"value"
],
"properties": {
"value": {
"type": "number"
},
"displayValue": {
"type": "string"
}
}
}
]
}
},
"type": "array",
"description": "Custom metadata for kanji characters.",
"items": {
"type": "array",
"description": "Metadata about a single kanji character.",
"minItems": 3,
"maxItems": 3,
"additionalItems": false,
"items": [
{
"type": "string",
"minLength": 1
},
{
"type": "string",
"const": "freq",
"description": "Type of data. \"freq\" corresponds to frequency information."
},
{
"$ref": "#/definitions/frequency",
"description": "Data for the character."
}
]
}
}