├── .github ├── renovate.json └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .mocharc.json ├── .prettierignore ├── LICENSE ├── README.md ├── eslint.config.mjs ├── generate-codes.ts ├── package.json ├── pnpm-lock.yaml ├── src ├── generated │ ├── codes.ts │ ├── phrases.ts │ ├── types.ts │ └── utils.ts ├── index.test.ts ├── index.ts └── typings.ts ├── tsconfig.json └── tsup.config.ts /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /generate-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/generate-codes.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/generated/codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/src/generated/codes.ts -------------------------------------------------------------------------------- /src/generated/phrases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/src/generated/phrases.ts -------------------------------------------------------------------------------- /src/generated/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/src/generated/types.ts -------------------------------------------------------------------------------- /src/generated/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/src/generated/utils.ts -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/typings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/src/typings.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahradelahi/status-codes/HEAD/tsup.config.ts --------------------------------------------------------------------------------