-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "geoconverter",
"version": "1.0.1",
"description": "A browser-based geospatial file converter powered by GDAL/OGR and WebAssembly. Transform vector data between GeoJSON, Shapefile, GeoPackage, KML, GPX, GML, FlatGeobuf, CSV, PMTiles, and MBTiles formats.",
"homepage": "https://github.com/mikoding/geoconverter#readme",
"repository": {
"type": "git",
"url": "https://github.com/mikoding/geoconverter.git"
},
"license": "MIT",
"author": "mikoding",
"type": "module",
"dependencies": {
"@cpp.js/package-gdal": "^1.0.0",
"@cpp.js/plugin-vite": "^1.0.2",
"epsg-index": "^2.0.0",
"jszip": "^3.10.1",
"maplibre-gl": "^5.9.0",
"proj4": "^2.19.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-map-gl": "^8.1.0",
"react-router-dom": "^7.11.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@playwright/test": "^1.49.1",
"@tailwindcss/vite": "^4.1.14",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react-swc": "^3.7.2",
"clsx": "^2.1.1",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"motion": "^12.23.24",
"tailwindcss": "^4.1.14",
"vite": "^6.0.5"
},
"keywords": [
"geospatial",
"gis",
"gdal",
"ogr",
"webassembly",
"geojson",
"shapefile",
"kml",
"geopackage",
"converter",
"react",
"vite",
"wasm"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"test:fixtures": "node e2e/fixtures/generate-fixtures.cjs",
"e2e:dev": "playwright test --config playwright.dev.config.cjs",
"e2e:prod": "playwright test --config playwright.prod.config.cjs"
}
}