├── .github └── workflows │ └── bun_build_and_deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── bun.lockb ├── package.json ├── src ├── convert.test.ts ├── convert.ts ├── index.ts ├── index.tsx ├── regexp-convert.test.ts └── regexp-convert.ts ├── try.sh └── tsconfig.json /.github/workflows/bun_build_and_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/.github/workflows/bun_build_and_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/bun.lockb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/package.json -------------------------------------------------------------------------------- /src/convert.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/src/convert.test.ts -------------------------------------------------------------------------------- /src/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/src/convert.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/regexp-convert.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/src/regexp-convert.test.ts -------------------------------------------------------------------------------- /src/regexp-convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/src/regexp-convert.ts -------------------------------------------------------------------------------- /try.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/try.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrienbrault/json-schema-to-gbnf/HEAD/tsconfig.json --------------------------------------------------------------------------------