-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.92 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
{
"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": "^2.1.0",
"@types/leaflet": "^1.9.12",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/react-is": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"cypress": "^13.13.3",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"leaflet": "^1.9.4",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-leaflet": "^4.2.1",
"semantic-release": "^24.1.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"vite": "^5.4.2"
},
"peerDependencies": {
"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.1.2",
"type-fest": "^4.25.0"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}