- ATTOM Property API integration for structured property data - USPS address standardization via API - County clerk/recorder feed scraping for deed changes and liens - Rate limiting, caching, and retry logic - Unit tests for each data source adapter - PropertyRecord, CountyDeedRecord, DataSourceType types in types.ts - Consolidated type exports in index.ts Co-Authored-By: Paperclip <noreply@paperclip.ing>
31 lines
734 B
JSON
31 lines
734 B
JSON
{
|
|
"name": "@shieldai/hometitle",
|
|
"version": "0.1.0",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"lint": "eslint src/"
|
|
},
|
|
"dependencies": {
|
|
"@shieldai/db": "workspace:*",
|
|
"@shieldai/types": "workspace:*",
|
|
"@shieldai/shared-notifications": "workspace:*",
|
|
"@shieldai/correlation": "workspace:*",
|
|
"uuid": "^11.1.0",
|
|
"rate-limiter-flexible": "^5.0.5",
|
|
"cache-manager": "^6.4.2",
|
|
"cacheable": "^1.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"vitest": "^4.1.5",
|
|
"@vitest/coverage-v8": "^4.1.5",
|
|
"@types/uuid": "^10.0.0"
|
|
},
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
}
|
|
}
|