forked from jupyter-widgets/ipyleaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.45 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
106
107
108
109
110
111
112
{
"name": "jupyter-leaflet",
"version": "0.18.1",
"description": "jupyter - leaflet bridge",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"css/",
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/jupyter-widgets/ipyleaflet.git"
},
"license": "MIT",
"author": "Project Jupyter",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "yarn run build:lib && yarn run build:nbextension && yarn run build:labextension",
"build:lib": "tsc",
"build:nbextension": "webpack --no-devtool",
"build:labextension": "jupyter labextension build .",
"clean": "yarn run clean:lib && yarn run clean:nbextension && yarn run clean:labextension",
"clean:lib": "rimraf lib",
"clean:nbextension": "rimraf ../nbextension/index.js",
"clean:labextension": "rimraf ../labextension",
"lint": "yarn prettier && yarn eslint",
"lint:check": "yarn prettier:check && yarn eslint",
"prettier": "yarn prettier:base --write --list-different",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "yarn prettier:base --check",
"prepack": "yarn run build",
"watch:lib": "tsc -w",
"watch:nbextension": "webpack --watch"
},
"dependencies": {
"@geoman-io/leaflet-geoman-free": "^2.16.0",
"@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"leaflet": "^1.7.1",
"leaflet-ant-path": "^1.3.0",
"leaflet-defaulticon-compatibility": "^0.1.1",
"leaflet-draw": "^1.0.4",
"leaflet-fullscreen": "^1.0.2",
"leaflet-measure": "^3.1.0",
"leaflet-rotatedmarker": "^0.2.0",
"leaflet-search": "2.9.8",
"leaflet-splitmap": "^1.0.3",
"leaflet-transform": "^1.0.3",
"leaflet-velocity": "^1.2.4",
"leaflet.awesome-markers": "^2.0.5",
"leaflet.markercluster": "^1.2.0",
"leaflet.vectorgrid": "^1.3.0",
"proj4": "^2.6.0",
"proj4leaflet": "^1.0.1",
"protomaps-leaflet": "^1.24.0",
"spin.js": "^4.1.0",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.8",
"@types/backbone": "^1.4.18",
"@types/leaflet": "^1.9.8",
"@types/leaflet-draw": "^1.0.11",
"@types/leaflet-fullscreen": "^1.0.9",
"@types/leaflet-rotatedmarker": "^0.2.5",
"@types/leaflet.awesome-markers": "^2.0.28",
"@types/leaflet.markercluster": "^1.5.4",
"@types/leaflet.vectorgrid": "^1.3.5",
"@types/node": "^20.10.5",
"@types/proj4leaflet": "^1.0.10",
"@types/webpack-env": "^1.18.4",
"css-loader": "^3.4.2",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-promise": "^6.0.1",
"file-loader": "^5.0.2",
"install": "^0.13.0",
"npm": "^6.14.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^2.6.1",
"source-map-loader": "^4.0.1",
"style-loader": "^1.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5",
"webpack-cli": "^5.1.4"
},
"jupyterlab": {
"extension": "lib/jupyterlab-plugin",
"outputDir": "./labextension",
"webpackConfig": "webpack.lab.config.js",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
},
"leaflet": {
"singleton": true
}
}
}
}