-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 872 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 872 Bytes
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
{
"name": "mapproxy-config",
"version": "1.0.0",
"type": "module",
"scripts": {
"check-all": "bun run scripts/check-all.ts && biome check --write .",
"check-urls": "bun run scripts/check-urls.ts && biome check --write .",
"discover-layers": "bun run scripts/discover-layers.ts && biome check --write .",
"generate-layer-docs": "bun run scripts/generate-layer-docs.ts && biome check --write .",
"create-demo-links": "bun run scripts/create_readme.ts && biome check --write .",
"check": "biome check --write .",
"format:yaml": "prettier --write \"**/*.yml\" \"**/*.yaml\""
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"fast-xml-parser": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"prettier": "^3.4.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}