forked from dbauszus-glx/foss4g-2027
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.47 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
69
70
71
72
73
74
75
{
"name": "my-app",
"private": true,
"version": "0.0.3",
"type": "module",
"scripts": {
"dev": "vite dev --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"mapdata": "uv run --script src/scripts/mapdata.py",
"buildings": "uv run --script src/scripts/buildings.py",
"sprite": "spreet src/data/sprite static/sprite/sprite && spreet --retina src/data/sprite static/sprite/sprite@2x"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@iconify-json/lucide": "^1.2.47",
"@iconify-json/material-symbols-light": "^1.2.25",
"@iconify-json/simple-icons": "^1.2.93",
"@iconify/tailwind4": "^1.0.6",
"@magidoc/plugin-svelte-marked": "^6.2.0",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/enhanced-img": "^0.4.4",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.0",
"@types/three": "^0.179.0",
"daisyui": "^5.0.43",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^16.0.0",
"marked": "^16.0.0",
"mdsvex": "^0.12.6",
"mdsvex-enhanced-images": "^0.3.3",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"sharp": "^0.34.2",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.20.0",
"vite": "^6.2.6"
},
"dependencies": {
"@dvt3d/maplibre-three-plugin": "^1.3.0",
"@fontsource/arvo": "^5.2.6",
"@fontsource/inter": "^5.2.6",
"@fontsource/kameron": "^5.2.6",
"@iconify-json/bi": "^1.2.6",
"@iconify-json/fluent": "^1.2.31",
"@iconify-json/gis": "^1.2.5",
"@iconify-json/solar": "^1.2.4",
"@iconify-json/tabler": "^1.2.23",
"@iconify-json/uil": "^1.2.3",
"@loaders.gl/i3s": "^4.3.3",
"@turf/point-on-feature": "^7.2.0",
"deck.gl": "^9.1.12",
"file-saver": "^2.0.5",
"maplibre-gl": "^5.5.0",
"math.gl": "^4.1.0",
"pmtiles": "^4.3.0",
"three": "^0.178.0",
"togpx": "^0.5.4",
"tokml": "^0.4.0"
}
}