-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.96 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.96 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
{
"name": "@adamscybot/react-leaflet-component-marker",
"version": "1.0.0",
"description": "A tiny wrapper for react-leaflet's <Marker /> component that allows you to use a React component as a marker, with working state, handlers, and access to parent contexts.",
"author": "adamscybot",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/adamscybot/react-leaflet-component-marker.git"
},
"bugs": {
"url": "https://github.com/adamscybot/react-leaflet-component-marker/issues"
},
"keywords": [
"react",
"react-leaflet",
"leaflet"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"sideEffects": false,
"scripts": {
"lint": "eslint './src/**/*.ts' './src/**/*.tsx'",
"build": "tsc --project tsconfig.build.json",
"test": "cypress run --component --browser chrome",
"test:dev": "cypress open --component --browser chrome"
},
"devDependencies": {
"@react-leaflet/core": "^3.0.0",
"@types/leaflet": "^1.9.15",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-is": "^19.0.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"cypress": "^14.1.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"leaflet": "^1.9.4",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-leaflet": "^5.0.0",
"semantic-release": "^24.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^5.4.11"
},
"peerDependencies": {
"@react-leaflet/core": ">=2.0.0",
"leaflet": ">=1.9.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-leaflet": ">=4.0.0"
},
"dependencies": {
"react-is": "^18.3.1",
"react-reverse-portal": "^2.2.0",
"type-fest": "^4.30.2"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}