-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.65 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.65 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
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "remote-visual-studio-code",
"displayName": "Remote Visual Studio Code",
"description": "Create & manage Remote Visual Studio Code sessions",
"version": "0.0.1",
"engines": {
"vscode": "^1.72.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:remote-visual-studio-code.show",
"onCommand:remote-visual-studio-code.createSession",
"onView:remote-visual-studio-code-sidebar"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "remote-visual-studio-code.show",
"title": "Show Remote VS Code"
},
{
"command": "remote-visual-studio-code.createSession",
"title": "Create Session"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "remote-visual-studio-code-sidebar-view",
"title": "Remote VS Code",
"icon": "media/icon.png"
}
]
},
"views": {
"remote-visual-studio-code-sidebar-view": [
{
"type": "webview",
"id": "remote-visual-studio-code-sidebar",
"name": "Remote VS Code",
"icon": "media/icon.png",
"contextualTitle": "Remote VS Code"
}
]
}
},
"license": "MIT",
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack --config webpack.config.js",
"watch": "concurrently \"webpack --config webpack.config.js --watch\" \"webpack --config webpack.react.js --watch\"",
"package": "webpack --mode production --devtool hidden-source-map --config webpack.config.js",
"compile:client": "webpack --config webpack.react.js",
"watch:client": "webpack --watch --config webpack.react.js",
"package:client": "webpack --mode production --devtool hidden-source-map --config webpack.react.js",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext .ts && prettier --write .",
"test": "node ./out/test/runTest.js",
"prepare": "husky install"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/mocha": "^10.0.0",
"@types/node": "16.x",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/socket.io-client": "^3.0.0",
"@types/vscode": "^1.72.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vscode/test-electron": "^2.1.5",
"concurrently": "^7.5.0",
"eslint": "^8.24.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^8.0.3",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"chalk": "^5.1.2",
"jsonwebtoken": "^8.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"socket.io-client": "^4.5.2",
"uglifyjs-webpack-plugin": "^2.2.0"
}
}