-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.58 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.58 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
{
"name": "geo-darshan",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"cluster-viewer:dev": "cd app && bun run vite",
"detection:dev": "cd app && bun run vite --open /detection.html",
"build": "cd app && vite build",
"download-tiles": "bun run scripts/download_esri.js test",
"download-tiles:3.5k": "bun run scripts/download_esri.js 3.5k",
"download-tiles:5k": "bun run scripts/download_esri.js 5k",
"stitch-tiles": "bun run scripts/stitch_esri.js test",
"stitch-tiles:3.5k": "bun run scripts/stitch_esri.js 3.5k",
"stitch-tiles:5k": "bun run scripts/stitch_esri.js 5k",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:svelte": "prettier --write app/**/*.svelte",
"lint": "eslint app/js/**/*.js",
"lint:fix": "eslint app/js/**/*.js --fix",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@turf/bbox": "^7.2.0",
"@turf/turf": "^7.2.0",
"axios": "^1.12.2",
"georaster": "^1.6.0",
"geotiff": "^2.1.3",
"html2canvas": "^1.4.1",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"leaflet": "^1.9.4",
"leaflet-draw": "^1.0.4",
"shapefile": "^0.6.6",
"shpjs": "^6.2.0",
"sphericalmercator": "^1.0.5"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@types/leaflet": "^1.9.20",
"eslint": "^9.36.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.39.6",
"typescript": "^5.9.2",
"vite": "^7.1.7"
}
}