-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.08 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.08 KB
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
{
"name": "codespace-extension",
"displayName": "Codespace Extension",
"description": "VS Code extension demonstrator for Codespace preview from PRs",
"version": "0.0.1",
"publisher": "ian",
"repository": {
"type": "git",
"url": "https://github.com/debrief/codespace-extension.git"
},
"scripts": {
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"compile": "yarn esbuild-base --sourcemap",
"watch": "yarn esbuild-base --sourcemap --watch",
"vscode:prepublish": "yarn esbuild-base --minify",
"typecheck": "tsc --noEmit"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "plot-json",
"aliases": [
"Plot JSON",
"plot-json"
],
"extensions": [
".plot.json"
],
"configuration": "./language-configuration.json"
}
],
"commands": [
{
"command": "codespace-extension.helloWorld",
"title": "Hello World"
},
{
"command": "customOutline.selectFeature",
"title": "Select Feature"
}
],
"views": {
"explorer": [
{
"id": "codespace-extension.helloView",
"name": "Hello World",
"when": "true"
},
{
"id": "customGeoJsonOutline",
"name": "GeoJSON Features",
"when": "true"
}
]
},
"customEditors": [
{
"viewType": "plotJsonEditor",
"displayName": "Plot JSON Viewer",
"selector": [
{
"filenamePattern": "*.plot.json"
}
]
}
]
},
"devDependencies": {
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@types/ws": "^8.5.10",
"@vscode/vsce": "^3.6.0",
"esbuild": "^0.25.9",
"typescript": "^4.9.4"
},
"dependencies": {
"leaflet": "^1.9.4",
"ws": "^8.14.2"
}
}