|
1 | 1 | {
|
2 |
| - "name": "@jupyterlab/geojson-extension", |
3 |
| - "version": "3.3.1", |
4 |
| - "description": "GeoJSON renderer for JupyterLab", |
5 |
| - "keywords": [ |
6 |
| - "jupyter", |
7 |
| - "jupyterlab", |
8 |
| - "jupyterlab-extension" |
9 |
| - ], |
10 |
| - "homepage": "https://github.com/jupyterlab/jupyter-renderers", |
11 |
| - "bugs": { |
12 |
| - "url": "https://github.com/jupyterlab/jupyter-renderers/issues" |
13 |
| - }, |
14 |
| - "repository": { |
15 |
| - "type": "git", |
16 |
| - "url": "https://github.com/jupyterlab/jupyter-renderers.git" |
17 |
| - }, |
18 |
| - "license": "BSD-3-Clause", |
19 |
| - "author": { |
20 |
| - "name": "Project Jupyter", |
21 |
| - |
22 |
| - }, |
23 |
| - "main": "lib/index.js", |
24 |
| - "types": "lib/index.d.ts", |
25 |
| - "directories": { |
26 |
| - "lib": "lib/" |
27 |
| - }, |
28 |
| - "files": [ |
29 |
| - "lib/*.d.ts", |
30 |
| - "lib/*.js", |
31 |
| - "style/**/*", |
32 |
| - "src/*.json", |
33 |
| - "style/index.js" |
34 |
| - ], |
35 |
| - "scripts": { |
36 |
| - "build": "jlpm build:lib && jlpm build:labextension:dev", |
37 |
| - "build:labextension": "jupyter labextension build .", |
38 |
| - "build:labextension:dev": "jupyter labextension build --development True .", |
39 |
| - "build:lib": "tsc --sourceMap", |
40 |
| - "build:lib:prod": "tsc", |
41 |
| - "build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension", |
42 |
| - "clean": "jlpm clean:lib", |
43 |
| - "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", |
44 |
| - "clean:labextension": "rimraf jupyterlab_geojson/labextension jupyterlab_geojson/_version.py", |
45 |
| - "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
46 |
| - "clean:lintcache": "rimraf .eslintcache .stylelintcache", |
47 |
| - "eslint": "jlpm eslint:check --fix", |
48 |
| - "eslint:check": "eslint . --cache --ext .ts,.tsx", |
49 |
| - "install:extension": "jlpm build", |
50 |
| - "lint": "jlpm stylelint && jlpm prettier && jlpm eslint", |
51 |
| - "lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", |
52 |
| - "prettier": "jlpm prettier:base --write --list-different", |
53 |
| - "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", |
54 |
| - "prettier:check": "jlpm prettier:base --check", |
55 |
| - "stylelint": "jlpm stylelint:check --fix", |
56 |
| - "stylelint:check": "stylelint --cache \"style/**/*.css\"", |
57 |
| - "watch": "run-p watch:src watch:labextension", |
58 |
| - "watch:labextension": "jupyter labextension watch .", |
59 |
| - "watch:src": "tsc -w --sourceMap" |
60 |
| - }, |
61 |
| - "dependencies": { |
62 |
| - "@jupyterlab/apputils": "^3.0.0 || ^4.0.0", |
63 |
| - "@jupyterlab/rendermime-interfaces": "^3.0.0 || ^3.8.0", |
64 |
| - "@jupyterlab/ui-components": "^3.0.0 || ^4.0.0", |
65 |
| - "@lumino/algorithm": "^1.0.0 || ^2.1.0", |
66 |
| - "@lumino/messaging": "^1.0.0 || ^2.0.0", |
67 |
| - "@lumino/widgets": "^1.0.0 || ^2.1.0", |
68 |
| - "leaflet": "^1.5.0" |
69 |
| - }, |
70 |
| - "devDependencies": { |
71 |
| - "@jupyterlab/builder": "^4.0.0", |
72 |
| - "@types/jest": "^29.2.0", |
73 |
| - "@types/json-schema": "^7.0.11", |
74 |
| - "@types/leaflet": "^1.4.0", |
75 |
| - "@typescript-eslint/eslint-plugin": "^5.55.0", |
76 |
| - "@typescript-eslint/parser": "^5.55.0", |
77 |
| - "css-loader": "^6.7.1", |
78 |
| - "eslint": "^8.36.0", |
79 |
| - "eslint-config-prettier": "^8.7.0", |
80 |
| - "eslint-plugin-prettier": "^4.2.1", |
81 |
| - "npm-run-all": "^4.1.5", |
82 |
| - "prettier": "^2.8.7", |
83 |
| - "rimraf": "^4.4.1", |
84 |
| - "source-map-loader": "^1.0.2", |
85 |
| - "style-loader": "^3.3.1", |
86 |
| - "stylelint": "^14.9.1", |
87 |
| - "stylelint-config-prettier": "^9.0.4", |
88 |
| - "stylelint-config-recommended": "^8.0.0", |
89 |
| - "stylelint-config-standard": "^26.0.0", |
90 |
| - "stylelint-prettier": "^2.0.0", |
91 |
| - "typescript": "~5.0.2", |
92 |
| - "yjs": "^13.5.40" |
93 |
| - }, |
94 |
| - "jupyterlab": { |
95 |
| - "mimeExtension": true, |
96 |
| - "outputDir": "jupyterlab_geojson/labextension" |
97 |
| - }, |
98 |
| - "styleModule": "style/index.js" |
| 2 | + "name": "@jupyterlab/geojson-extension", |
| 3 | + "version": "3.4.0", |
| 4 | + "description": "GeoJSON renderer for JupyterLab", |
| 5 | + "keywords": [ |
| 6 | + "jupyter", |
| 7 | + "jupyterlab", |
| 8 | + "jupyterlab-extension" |
| 9 | + ], |
| 10 | + "homepage": "https://github.com/jupyterlab/jupyter-renderers", |
| 11 | + "bugs": { |
| 12 | + "url": "https://github.com/jupyterlab/jupyter-renderers/issues" |
| 13 | + }, |
| 14 | + "repository": { |
| 15 | + "type": "git", |
| 16 | + "url": "https://github.com/jupyterlab/jupyter-renderers.git" |
| 17 | + }, |
| 18 | + "license": "BSD-3-Clause", |
| 19 | + "author": { |
| 20 | + "name": "Project Jupyter", |
| 21 | + |
| 22 | + }, |
| 23 | + "main": "lib/index.js", |
| 24 | + "types": "lib/index.d.ts", |
| 25 | + "directories": { |
| 26 | + "lib": "lib/" |
| 27 | + }, |
| 28 | + "files": [ |
| 29 | + "lib/*.d.ts", |
| 30 | + "lib/*.js", |
| 31 | + "style/**/*", |
| 32 | + "src/*.json", |
| 33 | + "style/index.js" |
| 34 | + ], |
| 35 | + "scripts": { |
| 36 | + "build": "jlpm build:lib && jlpm build:labextension:dev", |
| 37 | + "build:labextension": "jupyter labextension build .", |
| 38 | + "build:labextension:dev": "jupyter labextension build --development True .", |
| 39 | + "build:lib": "tsc --sourceMap", |
| 40 | + "build:lib:prod": "tsc", |
| 41 | + "build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension", |
| 42 | + "clean": "jlpm clean:lib", |
| 43 | + "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", |
| 44 | + "clean:labextension": "rimraf jupyterlab_geojson/labextension jupyterlab_geojson/_version.py", |
| 45 | + "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
| 46 | + "clean:lintcache": "rimraf .eslintcache .stylelintcache", |
| 47 | + "eslint": "jlpm eslint:check --fix", |
| 48 | + "eslint:check": "eslint . --cache --ext .ts,.tsx", |
| 49 | + "install:extension": "jlpm build", |
| 50 | + "lint": "jlpm stylelint && jlpm prettier && jlpm eslint", |
| 51 | + "lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", |
| 52 | + "prettier": "jlpm prettier:base --write --list-different", |
| 53 | + "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", |
| 54 | + "prettier:check": "jlpm prettier:base --check", |
| 55 | + "stylelint": "jlpm stylelint:check --fix", |
| 56 | + "stylelint:check": "stylelint --cache \"style/**/*.css\"", |
| 57 | + "watch": "run-p watch:src watch:labextension", |
| 58 | + "watch:labextension": "jupyter labextension watch .", |
| 59 | + "watch:src": "tsc -w --sourceMap" |
| 60 | + }, |
| 61 | + "dependencies": { |
| 62 | + "@jupyterlab/apputils": "^3.0.0 || ^4.0.0", |
| 63 | + "@jupyterlab/rendermime-interfaces": "^3.0.0 || ^3.8.0", |
| 64 | + "@jupyterlab/ui-components": "^3.0.0 || ^4.0.0", |
| 65 | + "@lumino/algorithm": "^1.0.0 || ^2.1.0", |
| 66 | + "@lumino/messaging": "^1.0.0 || ^2.0.0", |
| 67 | + "@lumino/widgets": "^1.0.0 || ^2.1.0", |
| 68 | + "leaflet": "^1.5.0" |
| 69 | + }, |
| 70 | + "devDependencies": { |
| 71 | + "@jupyterlab/builder": "^4.0.0", |
| 72 | + "@types/jest": "^29.2.0", |
| 73 | + "@types/json-schema": "^7.0.11", |
| 74 | + "@types/leaflet": "^1.4.0", |
| 75 | + "@typescript-eslint/eslint-plugin": "^5.55.0", |
| 76 | + "@typescript-eslint/parser": "^5.55.0", |
| 77 | + "css-loader": "^6.7.1", |
| 78 | + "eslint": "^8.36.0", |
| 79 | + "eslint-config-prettier": "^8.7.0", |
| 80 | + "eslint-plugin-prettier": "^4.2.1", |
| 81 | + "npm-run-all": "^4.1.5", |
| 82 | + "prettier": "^2.8.7", |
| 83 | + "rimraf": "^4.4.1", |
| 84 | + "source-map-loader": "^1.0.2", |
| 85 | + "style-loader": "^3.3.1", |
| 86 | + "stylelint": "^14.9.1", |
| 87 | + "stylelint-config-prettier": "^9.0.4", |
| 88 | + "stylelint-config-recommended": "^8.0.0", |
| 89 | + "stylelint-config-standard": "^26.0.0", |
| 90 | + "stylelint-prettier": "^2.0.0", |
| 91 | + "typescript": "~5.0.2", |
| 92 | + "yjs": "^13.5.40" |
| 93 | + }, |
| 94 | + "jupyterlab": { |
| 95 | + "mimeExtension": true, |
| 96 | + "outputDir": "jupyterlab_geojson/labextension" |
| 97 | + }, |
| 98 | + "styleModule": "style/index.js" |
99 | 99 | }
|
0 commit comments