├── .eslintrc.cjs ├── .github ├── dependabot.yml └── workflows │ └── node.js.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── README.md ├── README_KR.md ├── arehs.svg ├── eslint.config.js ├── fixup ├── jest.config.js ├── package.json ├── src ├── Arehs.ts ├── index.ts └── types.ts ├── test └── arehs.test.ts ├── tsconfig-base.json ├── tsconfig-cjs.json └── tsconfig.json /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm run lint-staged 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/README.md -------------------------------------------------------------------------------- /README_KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/README_KR.md -------------------------------------------------------------------------------- /arehs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/arehs.svg -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/eslint.config.js -------------------------------------------------------------------------------- /fixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/fixup -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/package.json -------------------------------------------------------------------------------- /src/Arehs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/src/Arehs.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Arehs'; 2 | -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/src/types.ts -------------------------------------------------------------------------------- /test/arehs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/test/arehs.test.ts -------------------------------------------------------------------------------- /tsconfig-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/tsconfig-base.json -------------------------------------------------------------------------------- /tsconfig-cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/tsconfig-cjs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongjin605/arehs/HEAD/tsconfig.json --------------------------------------------------------------------------------