Files
limitless-ui/package.json
Claude 80ef0965ea Replace Google Places autocomplete with OSM/gsc-geocoder
useAddressAutocomplete: drop the Google Maps JS SDK + loadGoogleMapsScript
in favor of an HTTP-fetch loop against a configurable endpoint (default
/api/geocoder), which we point at gsc-geocoder (183M-row OSM-derived
PostGIS database). Promote AddressAutocomplete from gscRegister fork into
the shared validation/components/. Pre-existing Google Maps TS namespace
issues vanish with the dep removal.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-19 20:50:53 +02:00

62 lines
1.6 KiB
JSON

{
"name": "@limitless/ui",
"version": "0.1.0",
"description": "Limitless-inspired Bootstrap 5 React UI kit (no jQuery), ready for Next.js/Remix.",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./css": "./dist/styles.css",
"./validation": {
"import": "./dist/validation/index.js",
"types": "./dist/validation/index.d.ts"
},
"./validation/server": {
"import": "./dist/validation/server/index.js",
"types": "./dist/validation/server/index.d.ts"
},
"./server": {
"import": "./dist/server/index.js",
"types": "./dist/server/index.d.ts"
},
"./genui/content": {
"import": "./dist/genui/content.js",
"types": "./dist/genui/content.d.ts"
}
},
"dependencies": {
"@floating-ui/react": "^0.24.8",
"nodemailer": "^6.9.0",
"@tanstack/react-table": "^8.13.0",
"react-colorful": "^5.6.1",
"react-day-picker": "^9.0.8",
"react-select": "^5.8.0"
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"build": "tsc -p tsconfig.json --noEmit false",
"postbuild": "node ./scripts/postbuild.cjs",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"peerDependencies": {
"bootstrap": "^5.3.3",
"react": "^18.2.0 || ^19.0.0",
"react-dom": "^18.2.0 || ^19.0.0"
},
"devDependencies": {
"@types/nodemailer": "^6.4.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"typescript": "^5.4.0"
}
}