-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.28 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
49
50
51
52
53
54
55
56
57
{
"name": "mbtiles-reader",
"version": "1.0.0",
"description": "Reader for MBTiles files.",
"author": "Gregor MacLennan",
"type": "module",
"license": "MIT",
"main": "index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "node --test",
"prepare": "husky",
"build:types": "del \"dist/\" && tsc -p tsconfig.publish.json"
},
"files": [
"dist",
"lib"
],
"prettier": {
"semi": false,
"singleQuote": true,
"importOrder": [
"^node:",
"^[./]"
],
"importOrderSeparation": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
]
},
"lint-staged": {
"*.js": [
"eslint --cache --fix"
],
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"@mapbox/sphericalmercator": "^2.0.1",
"@mapbox/tiletype": "0.3.x",
"better-sqlite3": "^11.5.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/better-sqlite3": "^7.6.11",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.17.6",
"del-cli": "^6.0.0",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}