├── .github └── workflows │ ├── ci.yml │ └── semantic_release.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── README.md ├── jest.config.js ├── package.json ├── scripts ├── generateTypes.ts └── json-schema-draft-07.json ├── src ├── diagnostics.ts ├── index.test.ts ├── index.ts ├── nodes.test.ts ├── nodes.ts ├── parser.test.ts ├── parser.ts ├── parserContext.ts ├── references.ts ├── schema.ts ├── types.ts └── uris.ts ├── tsconfig.json └── types └── is-valid-variable.d.ts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/semantic_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/.github/workflows/semantic_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/package.json -------------------------------------------------------------------------------- /scripts/generateTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/scripts/generateTypes.ts -------------------------------------------------------------------------------- /scripts/json-schema-draft-07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/scripts/json-schema-draft-07.json -------------------------------------------------------------------------------- /src/diagnostics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/src/diagnostics.ts -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/nodes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/src/nodes.test.ts -------------------------------------------------------------------------------- /src/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/src/nodes.ts -------------------------------------------------------------------------------- /src/parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/src/parser.test.ts -------------------------------------------------------------------------------- /src/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/src/parser.ts -------------------------------------------------------------------------------- /src/parserContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/src/parserContext.ts -------------------------------------------------------------------------------- /src/references.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/src/references.ts -------------------------------------------------------------------------------- /src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/src/schema.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/uris.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/src/uris.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/is-valid-variable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ggoodman/json-schema-to-dts/HEAD/types/is-valid-variable.d.ts --------------------------------------------------------------------------------