UNPKG

woaru

Version:

Universal Project Setup Autopilot - Analyze and automatically configure development tools for ANY programming language

77 lines (76 loc) 2.13 kB
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "WOARU Tools Database Schema", "type": "object", "required": [ "version", "lastUpdated", "categories", "frameworks", "metadata" ], "properties": { "version": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+$" }, "lastUpdated": { "type": "string", "format": "date" }, "metadata": { "type": "object", "properties": { "updateFrequency": { "type": "string", "enum": ["daily", "weekly", "monthly"] }, "sources": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "url": { "type": "string" }, "type": { "type": "string", "enum": ["npm", "github", "pypi", "nuget", "maven"] } } } } } }, "categories": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": { "type": "object", "required": ["description", "packages", "metadata"], "properties": { "description": { "type": "string" }, "packages": { "type": "array", "items": { "type": "string" } }, "configs": { "type": "object" }, "configFiles": { "type": "array", "items": { "type": "string" } }, "metadata": { "type": "object", "properties": { "popularity": { "type": "number" }, "lastChecked": { "type": "string", "format": "date-time" }, "npmDownloads": { "type": "number" }, "githubStars": { "type": "number" }, "alternatives": { "type": "array", "items": { "type": "string" } }, "deprecated": { "type": "boolean" }, "successor": { "type": "string" } } } } } } } } }