-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"author": "George Madeley",
"bin": "dist/index.js",
"browser": "dist/index.js",
"bugs": {
"url": "https://github.com/George-Madeley/leaflet-vector-offline/issues"
},
"dependencies": {
"leaflet": "^1.9.4",
"leaflet.offline": "^3.1.0",
"pmtiles": "^3.0.7",
"protomaps-leaflet": "^4.0.0"
},
"description": "Plugin for Leaflet.js that supports offline vector map tiles.",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.8.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"babel-jest": "^29.7.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
},
"files": [
"dist",
"package.json"
],
"homepage": "https://github.com/George-Madeley/leaflet-vector-offline#readme",
"keywords": [
"leaflet",
"offline",
"vector"
],
"license": "ISC",
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint --quiet --fix"
],
"src/**/*.{json,js,ts}": [
"prettier --write --ignore-unknown"
]
},
"main": "dist/index.js",
"module": "dist/index.js",
"name": "leaflet-vector-offline",
"repository": {
"type": "git",
"url": "https://github.com/George-Madeley/leaflet-vector-offline.git"
},
"scripts": {
"build": "rm -rf dist && npx tsc",
"format": "eslint --fix src test && prettier -w \"./(src|test)/**/*.ts\"",
"lint": "eslint src test && prettier --check \"./(src|test)/**/*.ts\"",
"lint:fix": "eslint --fix src test && prettier --write \"./(src|test)/**/*.ts\"",
"prepare": "husky install",
"test": "jest"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "1.0.33"
}