-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 753 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 753 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
27
28
29
30
31
32
33
{
"name": "tilepack",
"version": "1.4.0",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/bun": "^1.1.6",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.9.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"description": "Scrape XYZ tiles to an mbtiles file",
"private": true,
"main": "./src/TilePack.ts",
"bin": {
"tilepack": "./src/cli.ts"
},
"scripts": {
"start": "bun run src/cli.ts",
"build": "bun build --compile --minify src/cli.ts --outfile tilepack",
"test": "bun test",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
}
}