-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.74 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.74 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
{
"name": "locator-tool",
"version": "3.0.0",
"private": true,
"description": "Add {{Location}} and {{Object location}} to images on Wikimedia Commons",
"homepage": "https://locator-tool.toolforge.org/",
"bugs": {
"url": "https://github.com/simon04/locator-tool/issues"
},
"license": "GPL-3.0",
"author": "Simon Legner <Simon.Legner@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/simon04/locator-tool.git"
},
"type": "module",
"main": "app/index.js",
"scripts": {
"prepare": "husky",
"postinstall": "bun po",
"dev": "vite dev",
"build": "vite build",
"lint": "oxlint --type-aware",
"test": "bun test:ts && bun test:style && bun lint",
"test:style": "oxfmt --check",
"test:ts": "tsc --noEmit",
"fix:style": "oxfmt",
"po": "angular-gettext-cli --compile --files 'po/*.po' --dest app/i18n.json --format json",
"pot": "angular-gettext-cli --files {,./app/**/}*.{js,html} --dest po/locator-tool.pot --no-line-numbers"
},
"dependencies": {
"@vueuse/core": "14.2.1",
"bootstrap": "5.3.8",
"bootstrap-icons": "1.13.1",
"es-toolkit": "1.45.1",
"leaflet": "1.9.4",
"leaflet-control-geocoder": "3.3.1",
"vue": "3.5.30",
"vue-router": "4.6.4",
"wikimedia-commons-file-path": "2.1.1"
},
"devDependencies": {
"@types/leaflet": "1.9.21",
"@vitejs/plugin-vue": "6.0.5",
"@vue/tsconfig": "0.9.0",
"angular-gettext-cli": "1.2.0",
"angular-gettext-tools": "2.5.3",
"husky": "9.1.7",
"lint-staged": "16.3.3",
"oxfmt": "0.40.0",
"oxlint": "1.55.0",
"oxlint-tsgolint": "0.16.0",
"typescript": "5.9.3",
"vite": "8.0.0"
},
"lint-staged": {
"*": "oxfmt --no-error-on-unmatched-pattern"
}
}