TypeScript 61.9%
HTML 37.2%
SQL 0.7%
1{2 "name": "@rareindex/connectors",3 "version": "0.1.0",4 "private": true,5 "type": "module",6 "exports": {7 ".": {8 "types": "./src/index.ts",9 "default": "./src/index.ts"10 },11 "./testing": {12 "types": "./src/testing.ts",13 "default": "./src/testing.ts"14 }15 },16 "scripts": {17 "build": "tsc -p tsconfig.json --noEmit",18 "typecheck": "tsc -p tsconfig.json --noEmit",19 "test": "vitest run --passWithNoTests"20 },21 "dependencies": {22 "@rareindex/shared": "workspace:*",23 "@rareindex/taxonomy": "workspace:*",24 "cheerio": "^1.1.0",25 "pdfjs-dist": "^4.10.38",26 "zod": "^4.0.0"27 },28 "devDependencies": {29 "@types/node": "^24.0.0",30 "typescript": "^5.9.3",31 "vitest": "^3.2.0"32 }33}34