-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.82 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
123
124
125
126
127
128
129
130
131
{
"name": "explorviz-vscode-extension",
"displayName": "explorviz-vscode-extension",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.78.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ExplorViz/vs-code-extension"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "explorviz-vscode-extension.webview",
"title": "ExplorViz: Open Webview"
},
{
"command": "explorviz-vscode-extension.joinPairProgramming",
"title": "ExplorViz: Join Pair Programming Session ...",
"enablement": "explorviz.showPairProgrammingCommand"
},
{
"command": "explorviz-vscode-extension.createPairProgramming",
"title": "ExplorViz: Create Pair Programming Session"
},
{
"command": "explorviz-vscode-extension.OpenInExplorViz",
"title": "OpenInExplorViz"
},
{
"command": "explorviz-vscode-extension.connectToRoom",
"title": "ExplorViz: Connect to visualization ..."
},
{
"command": "explorviz-vscode-extension.disconnectFromRoom",
"title": "ExplorViz: Disconnect from visualisation ..."
}
],
"configuration": {
"type": "object",
"title": "ExplorViz VS Code Extension",
"properties": {
"explorviz.backendUrl": {
"type": "string",
"scope": "application",
"default": "http://localhost:3000",
"description": "Specify URL for ExplorViz's VS Code backend."
},
"explorviz.frontendUrl": {
"type": "string",
"scope": "application",
"default": "http://localhost:8080",
"description": "Specify URL for ExplorViz's frontend."
},
"explorviz.packageBaseDir": {
"type": "string",
"scope": "application",
"default": "/src/main/java",
"description": "Specify if there is a src directory that wouldn't be included into the FQN"
},
"explorviz.defaultMode": {
"type": "string",
"default": "crossWindow",
"description": "Specify the default connection mode."
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "explorviz-session-view-container",
"title": "ExplorViz",
"icon": "images/explorviz-view-container-scaled.svg"
}
]
},
"views": {
"explorviz-session-view-container": [
{
"type": "webview",
"id": "explorviz-session-view",
"name": "Session Information"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.3",
"@types/vscode": "^1.78.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vscode/test-electron": "^2.3.2",
"eslint": "^8.41.0",
"glob": "^10.2.6",
"mocha": "^10.2.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"@types/socket.io": "^3.0.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"request-promise-native": "^1.0.9",
"socket.io-client": "^4.6.1",
"vsls": "^1.0.4753"
}
}