-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "ozmapper",
"private": true,
"version": "0.1.0",
"description": "A fun, interactive map quiz for Melbourne & Sydney",
"author": "graf.semmel@googlemail.com",
"license": "CC BY-NC-SA 4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/graf-semmel/melb-mapper.git"
},
"bugs": {
"url": "https://github.com/graf-semmel/melb-mapper/issues"
},
"homepage": "https://github.com/graf-semmel/melb-mapper#readme",
"keywords": [
"ozmapper",
"oz",
"australia",
"melbourne",
"sydney",
"map",
"game",
"leaflet",
"suburbs",
"quiz"
],
"type": "module",
"scripts": {
"dev": "vite --open",
"dev:dark": "VITE_DARK_MODE=true vite --open",
"build": "vite build",
"preview": "vite --open preview",
"format": "npx @biomejs/biome format --write .",
"lint": "npx @biomejs/biome lint --write .",
"check": "npx @biomejs/biome check ."
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"osmtogeojson": "^3.0.0-beta.5",
"vite": "^6.1.0"
},
"dependencies": {
"@types/leaflet": "^1.9.17",
"chroma-js": "^3.2.0",
"leaflet": "^1.9.4"
},
"overrides": {
"@xmldom/xmldom": "0.9.8"
}
}