-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
68 lines (68 loc) · 1.61 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
{
"name": "leaflet-path-transform",
"version": "1.9.0",
"description": "Scale/rotate/move plugin for leaflet vector layers ",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"browser": "dist/index.js",
"unpkg": "dist/index.js",
"jsdelivr": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/index.js",
"dist/index.mjs",
"dist/index.cjs"
],
"scripts": {
"start": "vite dev",
"lint": "eslint ./src/*.mjs",
"build": "vite build",
"demo": "vite build -c example/vite.config.ts",
"release": "git push origin master && git checkout gh-pages && git merge master && git push origin gh-pages && npm publish"
},
"keywords": [
"leaflet",
"vector",
"scale",
"resize",
"rotate",
"move",
"geometry",
"edit"
],
"author": "Alexander Milevski <[email protected]>",
"license": "MIT",
"dependencies": {
"leaflet-path-drag": "1.9.5"
},
"peerDependencies": {
"leaflet": ">=1.8.0 <1.10.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.1",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"vite": "^5.1.5"
},
"directories": {
"example": "example"
},
"prettier": {
"printWidth": 80,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/w8r/Leaflet.Path.Transform.git"
},
"bugs": {
"url": "https://github.com/w8r/Leaflet.Path.Transform/issues"
},
"homepage": "https://github.com/w8r/Leaflet.Path.Transform#readme"
}