facilmap/client/package.json

47 wiersze
1.2 KiB
JSON

{
"name": "facilmap-client",
2024-04-24 10:48:36 +00:00
"version": "5.0.0-alpha",
"description": "A library that acts as a client to FacilMap and makes it possible to retrieve and modify objects on a collaborative map.",
"keywords": [
"maps",
"osm",
"facilmap"
],
2021-04-04 13:35:31 +00:00
"homepage": "https://github.com/FacilMap/facilmap",
"bugs": {
2021-04-04 13:35:31 +00:00
"url": "https://github.com/FacilMap/facilmap/issues"
},
"license": "AGPL-3.0",
"author": "Candid Dauth <cdauth@cdauth.eu>",
2023-10-02 03:23:22 +00:00
"main": "./dist/facilmap-client.mjs",
"type": "module",
2023-10-02 03:23:22 +00:00
"types": "./dist/facilmap-client.d.ts",
"repository": {
"type": "git",
2021-04-04 13:35:31 +00:00
"url": "https://github.com/FacilMap/facilmap.git"
},
2021-04-10 00:12:28 +00:00
"files": [
"dist",
"src",
"README.md"
2021-04-10 00:12:28 +00:00
],
"scripts": {
"build": "vite build",
"clean": "rimraf dist out out.node",
2024-01-16 17:17:55 +00:00
"dev-server": "vite",
"check-types": "tsc -b --emitDeclarationOnly"
},
"dependencies": {
2023-10-06 23:13:51 +00:00
"facilmap-types": "workspace:^",
2024-04-03 10:54:47 +00:00
"serialize-error": "^11.0.3",
2024-04-09 19:12:34 +00:00
"socket.io-client": "^4.7.5"
},
"devDependencies": {
2024-03-07 02:30:24 +00:00
"@types/geojson": "^7946.0.14",
2023-10-06 23:13:51 +00:00
"rimraf": "^5.0.5",
2024-04-09 19:12:34 +00:00
"typescript": "^5.4.4",
"vite": "^5.2.8",
2024-04-15 02:01:48 +00:00
"vite-plugin-dts": "^3.8.2"
}
}