-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.14 KB
/
package.json
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
{
"name": "bldrwnsch",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "Interactive map of image requests of the German Wikipedia",
"main": "app.js",
"author": "Simon Legner <[email protected]>",
"keywords": [
"wikipedia",
"toolforge",
"leaflet",
"image-requests",
"Bilderwunsch"
],
"license": "GPL-3.0-or-later",
"homepage": "https://bldrwnsch.toolforge.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/simon04/bldrwnsch.git"
},
"bugs": {
"url": "https://github.com/simon04/bldrwnsch/issues"
},
"scripts": {
"prepare": "husky",
"dev": "vite",
"build": "vite build --sourcemap",
"fix:style": "prettier --write --ignore-unknown src/",
"test": "prettier --check --ignore-unknown src/"
},
"dependencies": {
"ol": "^9.2.4",
"ol-ext": "^4.0.18",
"ol-pmtiles": "^0.5.0"
},
"devDependencies": {
"@types/geojson": "^7946.0.14",
"husky": "^9.0.10",
"prettier": "^3.2.5",
"vite": "^5.3.1"
},
"prettier": {
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true
}
}