├── .eslintrc.cjs ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── index.yaml ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jest.config.mjs ├── package.json ├── src ├── bin.test.ts ├── bin.ts ├── errors.ts ├── fields.ts ├── index.test.ts ├── index.ts ├── pkg.ts └── scripts.ts └── tsconfig.json /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/.github/workflows/index.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm test 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/jest.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/package.json -------------------------------------------------------------------------------- /src/bin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/src/bin.test.ts -------------------------------------------------------------------------------- /src/bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/src/bin.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/src/fields.ts -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/pkg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/src/pkg.ts -------------------------------------------------------------------------------- /src/scripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/src/scripts.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abraham/pkg-ok/HEAD/tsconfig.json --------------------------------------------------------------------------------