-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
105 lines (105 loc) · 2.68 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "react-leaflet-pouchdb-tilelayer",
"version": "4.0.2",
"description": "",
"type": "module",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.cjs"
}
},
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"typings": "./dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"lint": "eslint src --report-unused-disable-directives --max-warnings 0",
"build": "tsc && vite build",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"conventional-changelog-first": "npx conventional-changelog-cli -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"test": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hermanho/react-leaflet-pouchdb-tilelayer.git"
},
"keywords": [
"leaflet",
"react",
"react-leaflet",
"pouchdb",
"tilelayer"
],
"author": "hermanho",
"license": "MIT",
"bugs": {
"url": "https://github.com/hermanho/react-leaflet-pouchdb-tilelayer/issues"
},
"peerDependencies": {
"leaflet": "^1.9.4",
"pouchdb": "^9.0.0",
"pouchdb-browser": "^9.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"react-leaflet": "^4.2.1 || ^5.0.0",
"@react-leaflet/core": "^2.1.0 || ^3.0.0"
},
"dependencies": {
"comlink": "^4.4.2",
"escape-html": "^1.0.3",
"events": "^3.3.0",
"p-queue": "^8.0.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@react-leaflet/core": "^3.0.0",
"@types/escape-html": "^1.0.2",
"@types/leaflet": "^1.9.0",
"@types/pouchdb-browser": "^6.1.5",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/workerpool": "^6.4.7",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"leaflet": "^1.9.4",
"pouchdb": "^9.0.0",
"pouchdb-browser": "^9.0.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-leaflet": "^5.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.6",
"vite-plugin-dts": "^4.4.0",
"vite-plugin-externalize-deps": "^0.8.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"overrides": {
"vite-plugin-externalize-deps": {
"vite": "^6.0.0"
}
}
}