├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── METHODS.md ├── README.md ├── jest.config.ts ├── package.json ├── src ├── getDynamicRules.ts ├── index.ts ├── paths.ts └── types.ts ├── test └── index.test.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperatrona/onlyfans-scraper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperatrona/onlyfans-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /METHODS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperatrona/onlyfans-scraper/HEAD/METHODS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperatrona/onlyfans-scraper/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperatrona/onlyfans-scraper/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperatrona/onlyfans-scraper/HEAD/package.json -------------------------------------------------------------------------------- /src/getDynamicRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperatrona/onlyfans-scraper/HEAD/src/getDynamicRules.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperatrona/onlyfans-scraper/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperatrona/onlyfans-scraper/HEAD/src/paths.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperatrona/onlyfans-scraper/HEAD/src/types.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperatrona/onlyfans-scraper/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imperatrona/onlyfans-scraper/HEAD/tsconfig.json --------------------------------------------------------------------------------