-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
122 lines (122 loc) Β· 3.18 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
113
114
115
116
117
118
119
120
121
122
{
"name": "vscode-leaflet",
"displayName": "Leaflet Map",
"description": "Leaflet πΏ Map πΊοΈ renderer for Notebook π cell β data outputs",
"version": "1.5.0",
"engines": {
"vscode": "^1.65.0"
},
"icon": "resources/icons/leaflet-map.png",
"publisher": "RandomFractalsInc",
"author": "Taras Novak",
"contributors": [
"Taras Novak"
],
"license": "Apache-2.0",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/RandomFractals/vscode-leaflet"
},
"bugs": "https://github.com/RandomFractals/vscode-leaflet/issues",
"homepage": "https://github.com/RandomFractals/vscode-leaflet/README.md",
"galleryBanner": {
"color": "#333",
"theme": "dark"
},
"categories": [
"Data Science",
"Formatters",
"Education",
"Machine Learning",
"Notebooks",
"Visualization"
],
"keywords": [
"leaflet",
"map",
"GeoJSON",
"JSON",
"CSV",
"XML",
"flat data",
"geo location",
"text",
"view",
".NET Interactive",
"REST Book",
"TypeScript",
"Pyolite",
"notebook",
"cell",
"output",
"renderer",
"examples"
],
"activationEvents": [],
"main": "./out/extension/extension.js",
"contributes": {
"notebookRenderer": [
{
"id": "leaflet-map",
"entrypoint": "./out/renderer/index.js",
"displayName": "Leaflet Map",
"mimeTypes": [
"application/geo+json",
"application/topo+json",
"application/json",
"application/vnd.code.notebook.stdout",
"application/xml",
"text/csv",
"text/plain",
"text/x-json",
"text/xml"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile && node out/test/checkNoTestProvider.js",
"compile": "npm run compile:extension && npm run compile:renderer",
"compile:extension": "tsc -b",
"compile:renderer": "webpack --mode production",
"lint": "eslint src --ext ts",
"watch": "concurrently -r \"npm:watch:*\"",
"watch:extension": "tsc -b --watch",
"watch:renderer": "webpack --mode development --watch",
"dev": "concurrently -r npm:watch:extension npm:renderer",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/d3-dsv": "^3.0.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "^14.5.0",
"@types/vscode": "^1.65.0",
"@types/vscode-notebook-renderer": "^1.60.0",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"concurrently": "^7.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.11.0",
"glob": "^7.2.0",
"mocha": "^9.2.2",
"style-loader": "^3.3.1",
"svg-inline-loader": "^0.8.2",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2",
"vscode-notebook-error-overlay": "^1.0.1",
"vscode-test": "^1.6.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"d3-dsv": "^3.0.1",
"htl": "^0.3.1",
"fast-xml-parser": "^4.0.0",
"leaflet": "^1.7.1",
"leaflet.markercluster": "^1.5.3"
}
}