facilmap/client/package.json

47 wiersze
1.1 KiB
JSON
Czysty Zwykły widok Historia

{
"name": "facilmap-client",
2021-06-27 14:05:18 +00:00
"version": "3.4.0",
"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",
"tsconfig.json"
],
"scripts": {
"build": "vite build",
2020-03-15 00:57:41 +00:00
"clean": "rimraf dist",
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-03-07 02:30:24 +00:00
"socket.io-client": "^4.7.4"
},
"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-03-07 02:30:24 +00:00
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vite-plugin-dts": "^3.7.3"
}
}