├── .gitignore ├── .gitmodules ├── .src ├── README.md ├── build.ts ├── checksums.json ├── draft │ ├── 07 │ │ └── definition.ts │ ├── 2019_09 │ │ └── definition.ts │ └── 2020_12 │ │ └── definition.ts ├── file_templates │ ├── LICENSE.template.md │ ├── README.deno.template.md │ └── README.node.template.md ├── mod.test.ts ├── mod_template.ts ├── spec.ts ├── tsc.ts ├── types.ts ├── utils │ ├── assert_definition_is_sorted.ts │ ├── checksum.ts │ ├── format_definition_descriptions.ts │ ├── format_markdown.test.ts │ ├── format_markdown.ts │ └── source_code.ts └── version.ts ├── .vscode ├── extensions.json └── settings.json ├── LICENSE.md ├── README.md ├── cspell.json ├── deno.jsonc ├── deno.lock └── dist ├── deno ├── LICENSE.md ├── README.md ├── draft_07.ts ├── draft_2019_09.ts ├── draft_2020_12.ts ├── draft_latest.ts └── version.ts ├── node ├── LICENSE.md ├── README.md ├── draft_07.d.ts ├── draft_07.js ├── draft_2019_09.d.ts ├── draft_2019_09.js ├── draft_2020_12.d.ts ├── draft_2020_12.js └── package.json └── spec_definitions ├── LICENSE.md ├── README.md ├── draft_07.json ├── draft_2019_09.json └── draft_2020_12.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules/ 3 | /.src/release_notes.md -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.gitmodules -------------------------------------------------------------------------------- /.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/README.md -------------------------------------------------------------------------------- /.src/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/build.ts -------------------------------------------------------------------------------- /.src/checksums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/checksums.json -------------------------------------------------------------------------------- /.src/draft/07/definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/draft/07/definition.ts -------------------------------------------------------------------------------- /.src/draft/2019_09/definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/draft/2019_09/definition.ts -------------------------------------------------------------------------------- /.src/draft/2020_12/definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/draft/2020_12/definition.ts -------------------------------------------------------------------------------- /.src/file_templates/LICENSE.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/file_templates/LICENSE.template.md -------------------------------------------------------------------------------- /.src/file_templates/README.deno.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/file_templates/README.deno.template.md -------------------------------------------------------------------------------- /.src/file_templates/README.node.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/file_templates/README.node.template.md -------------------------------------------------------------------------------- /.src/mod.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/mod.test.ts -------------------------------------------------------------------------------- /.src/mod_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/mod_template.ts -------------------------------------------------------------------------------- /.src/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/spec.ts -------------------------------------------------------------------------------- /.src/tsc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/tsc.ts -------------------------------------------------------------------------------- /.src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/types.ts -------------------------------------------------------------------------------- /.src/utils/assert_definition_is_sorted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/utils/assert_definition_is_sorted.ts -------------------------------------------------------------------------------- /.src/utils/checksum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/utils/checksum.ts -------------------------------------------------------------------------------- /.src/utils/format_definition_descriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/utils/format_definition_descriptions.ts -------------------------------------------------------------------------------- /.src/utils/format_markdown.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/utils/format_markdown.test.ts -------------------------------------------------------------------------------- /.src/utils/format_markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/utils/format_markdown.ts -------------------------------------------------------------------------------- /.src/utils/source_code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.src/utils/source_code.ts -------------------------------------------------------------------------------- /.src/version.ts: -------------------------------------------------------------------------------- 1 | export const VERSION = "8.0.2"; 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/README.md -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/cspell.json -------------------------------------------------------------------------------- /deno.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/deno.jsonc -------------------------------------------------------------------------------- /deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/deno.lock -------------------------------------------------------------------------------- /dist/deno/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/deno/LICENSE.md -------------------------------------------------------------------------------- /dist/deno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/deno/README.md -------------------------------------------------------------------------------- /dist/deno/draft_07.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/deno/draft_07.ts -------------------------------------------------------------------------------- /dist/deno/draft_2019_09.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/deno/draft_2019_09.ts -------------------------------------------------------------------------------- /dist/deno/draft_2020_12.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/deno/draft_2020_12.ts -------------------------------------------------------------------------------- /dist/deno/draft_latest.ts: -------------------------------------------------------------------------------- 1 | export * from "./draft_2020_12.ts"; -------------------------------------------------------------------------------- /dist/deno/version.ts: -------------------------------------------------------------------------------- 1 | export const VERSION = "8.0.2"; -------------------------------------------------------------------------------- /dist/node/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/node/LICENSE.md -------------------------------------------------------------------------------- /dist/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/node/README.md -------------------------------------------------------------------------------- /dist/node/draft_07.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/node/draft_07.d.ts -------------------------------------------------------------------------------- /dist/node/draft_07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/node/draft_07.js -------------------------------------------------------------------------------- /dist/node/draft_2019_09.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/node/draft_2019_09.d.ts -------------------------------------------------------------------------------- /dist/node/draft_2019_09.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/node/draft_2019_09.js -------------------------------------------------------------------------------- /dist/node/draft_2020_12.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/node/draft_2020_12.d.ts -------------------------------------------------------------------------------- /dist/node/draft_2020_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/node/draft_2020_12.js -------------------------------------------------------------------------------- /dist/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/node/package.json -------------------------------------------------------------------------------- /dist/spec_definitions/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/spec_definitions/LICENSE.md -------------------------------------------------------------------------------- /dist/spec_definitions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/spec_definitions/README.md -------------------------------------------------------------------------------- /dist/spec_definitions/draft_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/spec_definitions/draft_07.json -------------------------------------------------------------------------------- /dist/spec_definitions/draft_2019_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/spec_definitions/draft_2019_09.json -------------------------------------------------------------------------------- /dist/spec_definitions/draft_2020_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RemyRylan/json-schema-typed/HEAD/dist/spec_definitions/draft_2020_12.json --------------------------------------------------------------------------------