├── .github └── workflows │ └── release.yaml ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── README.md ├── assets └── logo.svg ├── package.json ├── src ├── core.ts ├── index.ts ├── types │ ├── Policy.ts │ ├── UserAgent.ts │ └── index.ts └── utils │ ├── index.ts │ ├── size.ts │ └── time.ts └── tsconfig.json /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "endOfLine": "auto" 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/package.json -------------------------------------------------------------------------------- /src/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/src/core.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/Policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/src/types/Policy.ts -------------------------------------------------------------------------------- /src/types/UserAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/src/types/UserAgent.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/src/utils/size.ts -------------------------------------------------------------------------------- /src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACP-CODE/astro-robots/HEAD/src/utils/time.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strict" 3 | } 4 | --------------------------------------------------------------------------------