├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── ci.yaml │ └── update.yaml ├── .gitignore ├── .npmrc ├── Makefile ├── README.md ├── eslint.config.ts ├── index.json ├── index.test.ts ├── package.json ├── tsconfig.json ├── types.d.ts ├── update-data.ts └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/.github/workflows/update.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/.npmrc -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/eslint.config.ts -------------------------------------------------------------------------------- /index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/index.json -------------------------------------------------------------------------------- /index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/index.test.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/types.d.ts -------------------------------------------------------------------------------- /update-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/update-data.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/oui-data/HEAD/vitest.config.ts --------------------------------------------------------------------------------