gitextract_e5j6qush/ ├── .all-contributorsrc ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── assets/ │ ├── svgs/ │ │ ├── Error404.tsx │ │ ├── Error500.tsx │ │ └── Npm.tsx │ └── vendor/ │ ├── babel-plugin-js-to-mobx-state-tree.js │ ├── html-minifier.js │ └── json-to-jsdoc.js ├── components/ │ ├── ConversionPanel.tsx │ ├── EditorPanel.tsx │ ├── Form.tsx │ ├── Meta.tsx │ ├── Monaco.tsx │ ├── Navigator.tsx │ ├── NoSSR.tsx │ ├── Searchbox.tsx │ └── SvgConverter.tsx ├── constants/ │ ├── babelTransforms.ts │ ├── data.ts │ ├── graphqlTransforms.ts │ └── svgoConfig.ts ├── hooks/ │ ├── useDarkMode.ts │ ├── useData.ts │ ├── useLocalStorage.ts │ ├── useSessionStorage.ts │ └── useSettings.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages/ │ ├── _app.tsx │ ├── _document.tsx │ ├── _error.tsx │ ├── api/ │ │ ├── flow-to-javascript.ts │ │ ├── flow-to-typescript.ts │ │ ├── html-to-pug.ts │ │ ├── json-schema-to-openapi-schema.ts │ │ ├── typescript-to-flow.ts │ │ ├── typescript-to-javascript.ts │ │ ├── typescript-to-json-schema.ts │ │ └── typescript-to-zod.ts │ ├── cadence-to-go.tsx │ ├── css-to-js.tsx │ ├── css-to-tailwind.tsx │ ├── flow-to-javascript.tsx │ ├── flow-to-typescript-declaration.tsx │ ├── flow-to-typescript.tsx │ ├── graphql-to-components.tsx │ ├── graphql-to-flow.tsx │ ├── graphql-to-fragment-matcher.tsx │ ├── graphql-to-introspection-json.tsx │ ├── graphql-to-java.tsx │ ├── graphql-to-resolvers-signature.tsx │ ├── graphql-to-schema-ast.tsx │ ├── graphql-to-typescript-mongodb.tsx │ ├── graphql-to-typescript.tsx │ ├── html-to-jsx.tsx │ ├── html-to-pug.tsx │ ├── index.tsx │ ├── js-object-to-json.tsx │ ├── js-object-to-typescript.tsx │ ├── json-schema-to-openapi-schema.tsx │ ├── json-schema-to-protobuf.tsx │ ├── json-schema-to-typescript.tsx │ ├── json-schema-to-zod.tsx │ ├── json-to-big-query.tsx │ ├── json-to-flow.tsx │ ├── json-to-go-bson.tsx │ ├── json-to-go.tsx │ ├── json-to-graphql.tsx │ ├── json-to-io-ts.tsx │ ├── json-to-java.tsx │ ├── json-to-jsdoc.tsx │ ├── json-to-json-schema.tsx │ ├── json-to-kotlin.tsx │ ├── json-to-mobx-state-tree.tsx │ ├── json-to-mongoose.tsx │ ├── json-to-mysql.tsx │ ├── json-to-proptypes.tsx │ ├── json-to-rust-serde.tsx │ ├── json-to-sarcastic.tsx │ ├── json-to-scala-case-class.tsx │ ├── json-to-toml.tsx │ ├── json-to-typescript.tsx │ ├── json-to-yaml.tsx │ ├── json-to-zod.tsx │ ├── jsonld-to-compacted.tsx │ ├── jsonld-to-expanded.tsx │ ├── jsonld-to-flattened.tsx │ ├── jsonld-to-framed.tsx │ ├── jsonld-to-normalized.tsx │ ├── jsonld-to-nquads.tsx │ ├── markdown-to-html.tsx │ ├── object-styles-to-template-literal.tsx │ ├── svg-to-react-native.tsx │ ├── toml-to-json.tsx │ ├── toml-to-yaml.tsx │ ├── typescript-to-flow.tsx │ ├── typescript-to-javascript.tsx │ ├── typescript-to-json-schema.tsx │ ├── typescript-to-typescript-declaration.tsx │ ├── typescript-to-zod.tsx │ ├── xml-to-json.tsx │ ├── yaml-to-json.tsx │ └── yaml-to-toml.tsx ├── patches/ │ ├── @khanacademy+flow-to-ts+0.5.2.patch │ ├── htmltojsx+0.3.0.patch │ ├── json-schema-to-typescript+10.1.4.patch │ ├── json_typegen_wasm+0.7.0.patch │ └── relay-compiler+10.1.0.patch ├── public/ │ └── static/ │ └── site.webmanifest ├── styles/ │ └── main.css ├── tsconfig.json ├── typings/ │ └── npm/ │ ├── Readme.md │ └── evergreen-ui.d.ts ├── typings.d.ts ├── utils/ │ ├── prettier.ts │ ├── prettify.ts │ ├── request.ts │ ├── routes.tsx │ └── workerWrapper.ts ├── vercel.json └── workers/ ├── babel.worker.ts ├── graphql.worker.ts ├── postcss.worker.ts ├── prettier.worker.ts ├── svgo.worker.ts └── svgr.worker.ts