/ package.json
package.json
 1  {
 2    "name": "google-csv-to-kml-converter",
 3    "version": "1.0.0",
 4    "description": "CLI tool to convert Google Maps CSV exports to KML format for Organic Maps",
 5    "main": "dist/index.js",
 6    "bin": {
 7      "csv2kml": "dist/index.js"
 8    },
 9    "scripts": {
10      "build": "tsc",
11      "start": "node dist/index.js",
12      "dev": "ts-node src/index.ts",
13      "process-unresolved": "ts-node src/process-unresolved.ts",
14      "lint": "eslint src/**/*.ts",
15      "test": "jest"
16    },
17    "keywords": [
18      "google-maps",
19      "csv",
20      "kml",
21      "organic-maps",
22      "converter"
23    ],
24    "author": "DonGeolog",
25    "license": "MIT",
26    "dependencies": {
27      "@googlemaps/google-maps-services-js": "^3.3.42",
28      "commander": "^11.1.0",
29      "csv-parser": "^3.0.0",
30      "dotenv": "^16.3.1"
31    },
32    "devDependencies": {
33      "@types/node": "^20.10.0",
34      "@typescript-eslint/eslint-plugin": "^6.13.0",
35      "@typescript-eslint/parser": "^6.13.0",
36      "eslint": "^8.54.0",
37      "jest": "^29.7.0",
38      "ts-node": "^10.9.1",
39      "typescript": "^5.3.0"
40    }
41  }