package.json (1199B)
1 { 2 "name": "@radroots/geo", 3 "version": "0.0.1", 4 "private": true, 5 "license": "GPLv3", 6 "type": "module", 7 "main": "./dist/cjs/index.js", 8 "module": "./dist/esm/index.js", 9 "types": "./dist/types/index.d.ts", 10 "exports": { 11 ".": { 12 "types": "./dist/types/index.d.ts", 13 "import": "./dist/esm/index.js", 14 "require": "./dist/cjs/index.js" 15 } 16 }, 17 "scripts": { 18 "build:esm": "tsc -p tsconfig.esm.json", 19 "build:cjs": "tsc -p tsconfig.cjs.json", 20 "build": "npm run clean && npm run build:esm && npm run build:cjs", 21 "prebuild": "npm run clean", 22 "clean": "rimraf dist", 23 "dev": "npm run watch", 24 "watch": "tsc -w" 25 }, 26 "devDependencies": { 27 "@radroots/tsconfig": "workspace:*", 28 "@types/ngeohash": "0.6.8", 29 "@types/node": "^22.13.1", 30 "rimraf": "^6.0.1", 31 "typescript": "5.8.3" 32 }, 33 "publishConfig": { 34 "access": "public" 35 }, 36 "dependencies": { 37 "@radroots/utils": "workspace:*", 38 "@radroots/replica-db-schema-bindings": "workspace:*", 39 "geohashing": "^2.0.1", 40 "zod": "^4.0.5" 41 } 42 }