├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── database_correction.yml │ └── feature_request.yml ├── dependabot.yml └── workflows │ └── workflow.yml ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── companies.json ├── trackers.csv ├── trackers.json ├── vpn_services.json └── whotracksme.json ├── index.ts ├── package.json ├── source ├── companies.json ├── trackers.json ├── vpn_services.json ├── whotracksme.json └── whotracksme_companies.json ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/database_correction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/.github/ISSUE_TEMPLATE/database_correction.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode 3 | trackerdb.sql 4 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/README.md -------------------------------------------------------------------------------- /dist/companies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/dist/companies.json -------------------------------------------------------------------------------- /dist/trackers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/dist/trackers.csv -------------------------------------------------------------------------------- /dist/trackers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/dist/trackers.json -------------------------------------------------------------------------------- /dist/vpn_services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/dist/vpn_services.json -------------------------------------------------------------------------------- /dist/whotracksme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/dist/whotracksme.json -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/package.json -------------------------------------------------------------------------------- /source/companies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/source/companies.json -------------------------------------------------------------------------------- /source/trackers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/source/trackers.json -------------------------------------------------------------------------------- /source/vpn_services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/source/vpn_services.json -------------------------------------------------------------------------------- /source/whotracksme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/source/whotracksme.json -------------------------------------------------------------------------------- /source/whotracksme_companies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/source/whotracksme_companies.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdguardTeam/companiesdb/HEAD/yarn.lock --------------------------------------------------------------------------------