SPB Git forge

spb/ka-maps

Public
6commits 1branches 0releases
448.0 KBsize
maindefault branch
29 days agolast push
TypeScript 87.7% CSS 12.3%
1.2 KB · 50 lines json
Raw Blame History
1{2  "name": "@groupe-ka/ka-maps",3  "version": "0.2.0",4  "description": "Ka Maps — real-estate geographic intelligence framework by Groupe Ka. Powers Lou-Ka, Immo-Ka and Vrai-Prix maps.",5  "author": "Simon-Pierre Boucher <contact@spboucher.ai>",6  "license": "UNLICENSED",7  "private": true,8  "type": "module",9  "main": "./dist/index.js",10  "types": "./dist/index.d.ts",11  "exports": {12    ".": {13      "types": "./dist/index.d.ts",14      "import": "./dist/index.js"15    },16    "./react": {17      "types": "./dist/react/index.d.ts",18      "import": "./dist/react/index.js"19    },20    "./styles.css": "./dist/ka-maps.css"21  },22  "files": [23    "dist"24  ],25  "scripts": {26    "build": "tsc -p tsconfig.build.json && cp src/styles/ka-maps.css dist/ka-maps.css",27    "typecheck": "tsc --noEmit",28    "test": "vitest run",29    "test:watch": "vitest",30    "pack:tarball": "npm run build && npm pack --pack-destination ."31  },32  "dependencies": {33    "@types/geojson": "^7946.0.16",34    "mapbox-gl": "^3.28.1"35  },36  "peerDependencies": {37    "react": ">=18"38  },39  "peerDependenciesMeta": {40    "react": {41      "optional": true42    }43  },44  "devDependencies": {45    "@types/react": "^18.3.3",46    "typescript": "^5.8.0",47    "vitest": "^3.0.0"48  }49}50