-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.84 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
{
"name": "leaflet.sidepanel",
"version": "1.2.1",
"description": "Slide side panel plugin for Leaflet",
"author": "cyclingbyte <cyclingbyte@web.de>",
"license": "MIT",
"private": false,
"homepage": "https://cyclingbyte.github.io/Leaflet.SidePanel/",
"type": "module",
"main": "dist/leaflet-sidepanel.cjs.js",
"browser": "dist/leaflet-sidepanel.umd.js",
"module": "dist/leaflet-sidepanel.es.js",
"style": "dist/style.css",
"types": "dist/types/leaflet-sidepanel.d.ts",
"files": [
"dist/",
"CHANGELOG.md"
],
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclingbyte/Leaflet.SidePanel.git"
},
"scripts": {
"build": "vite build",
"type-check": "tsc --noEmit",
"test": "vitest --coverage --ui",
"test:check": "vitest",
"test:mutation": "stryker run",
"lint": "eslint --max-warnings 0 . || (echo 'Linter failed' && exit 1)",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check . || (echo 'Code is not formatted' && exit 1)"
},
"bugs": {
"url": "https://github.com/cyclingbyte/Leaflet.SidePanel/issues"
},
"peerDependencies": {
"leaflet": "^1.0.0"
},
"devDependencies": {
"@stryker-mutator/core": "^8.5.0",
"@stryker-mutator/typescript-checker": "^8.5.0",
"@stryker-mutator/vitest-runner": "^8.5.0",
"@types/leaflet": "^1.9.12",
"@types/node": "^22.5.0",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.1",
"eslint": "^9.9.1",
"jsdom": "^25.0.0",
"prettier": "^3.3.3",
"sass": "^1.79.1",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vite-plugin-dts": "^4.0.3",
"vitest": "^2.1.1"
},
"keywords": [
"leaflet",
"leafletjs",
"leaflet-plugin",
"leaflet-sidebar",
"leaflet-sidepanel"
]
}