-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.17 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "mbtiles-reader",
"version": "2.0.1",
"description": "Reader for MBTiles files.",
"author": "Gregor MacLennan",
"type": "module",
"license": "MIT",
"exports": {
".": {
"browser": {
"types": "./dist/index.browser.d.ts",
"default": "./index.browser.js"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./index.js"
}
}
},
"main": "index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest run",
"test:node": "vitest run --project node",
"test:browser": "vitest run --project browser",
"prepare": "husky",
"build:types": "del \"dist/\" && tsc -p tsconfig.publish.json",
"prepack": "npm run build:types"
},
"files": [
"dist",
"lib",
"index.js",
"index.browser.js"
],
"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.2",
"@mapbox/tiletype": "0.3.x",
"@sqlite.org/sqlite-wasm": "^3.51.2-build7"
},
"optionalDependencies": {
"better-sqlite3": "^12.8.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.17.6",
"@vitest/browser": "^4.1.0",
"@vitest/browser-playwright": "^4.1.0",
"del-cli": "^7.0.0",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.1.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digidem/mbtiles-reader.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/digidem/mbtiles-reader/issues"
},
"homepage": "https://github.com/digidem/mbtiles-reader#readme"
}