- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
38 lines
1009 B
JSON
38 lines
1009 B
JSON
{
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"definitions": {
|
|
"MatchCondition": {
|
|
"anyOf": [{ "instanceof": "RegExp", "tsType": "RegExp" }, { "$ref": "#/definitions/Path" }]
|
|
},
|
|
"MatchConditions": {
|
|
"type": "array",
|
|
"items": { "$ref": "#/definitions/MatchCondition" },
|
|
"minItems": 1
|
|
},
|
|
"Path": { "type": "string" },
|
|
"ESModuleOptions": {
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"properties": {
|
|
"exclude": {
|
|
"anyOf": [
|
|
{ "$ref": "#/definitions/MatchCondition" },
|
|
{ "$ref": "#/definitions/MatchConditions" }
|
|
]
|
|
},
|
|
"include": {
|
|
"anyOf": [
|
|
{ "$ref": "#/definitions/MatchCondition" },
|
|
{ "$ref": "#/definitions/MatchConditions" }
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"properties": {
|
|
"const": { "type": "boolean" },
|
|
"esModule": { "anyOf": [{ "type": "boolean" }, { "$ref": "#/definitions/ESModuleOptions" }] }
|
|
}
|
|
}
|