├── .editorconfig ├── .eslintrc ├── .gitignore ├── .travis.yml ├── index.js ├── package.json ├── readme.md ├── test ├── fixtures │ ├── .eslintrc │ ├── any.js │ ├── array-of-shape.js │ ├── array-of.js │ ├── one-of-type.js │ ├── one-of.js │ └── primitives.js ├── index.js └── snapshots │ ├── index.js.md │ └── index.js.snap └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/.travis.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/readme.md -------------------------------------------------------------------------------- /test/fixtures/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/test/fixtures/.eslintrc -------------------------------------------------------------------------------- /test/fixtures/any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/test/fixtures/any.js -------------------------------------------------------------------------------- /test/fixtures/array-of-shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/test/fixtures/array-of-shape.js -------------------------------------------------------------------------------- /test/fixtures/array-of.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/test/fixtures/array-of.js -------------------------------------------------------------------------------- /test/fixtures/one-of-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/test/fixtures/one-of-type.js -------------------------------------------------------------------------------- /test/fixtures/one-of.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/test/fixtures/one-of.js -------------------------------------------------------------------------------- /test/fixtures/primitives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/test/fixtures/primitives.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/test/index.js -------------------------------------------------------------------------------- /test/snapshots/index.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/test/snapshots/index.js.md -------------------------------------------------------------------------------- /test/snapshots/index.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/test/snapshots/index.js.snap -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticaivc/react-docgen-to-json-schema/HEAD/yarn.lock --------------------------------------------------------------------------------