-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 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
{
"name": "electron-vscode",
"version": "0.0.0",
"description": "electron installer in vscode extension",
"main": "./dist/vscode-electron.js",
"displayName": "Electron VsCode",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"vscode:prepublish": "rimraf ./dist && webpack --config ./bin/webpack-prod.config.js",
"prebuild": "rimraf ./dist",
"prestart": "rimraf ./dist",
"build": "webpack --config ./bin/webpack.config.js"
},
"keywords": [
"electron",
"vscode"
],
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/q-masters/vscode-electron"
},
"activationEvents": ["*"],
"publisher": "q-masters",
"author": "Ralf Hannuschka",
"license": "ISC",
"devDependencies": {
"@types/node-fetch": "2.5.10",
"@types/rimraf": "^3.0.0",
"@types/vscode": "1.52.0",
"electron": "12.0.6",
"eslint": "7.26.0",
"node-fetch": "2.6.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"ts-loader": "9.1.2",
"tsyringe": "4.6.0",
"typescript": "4.2.4",
"vsce": "1.88.0",
"webpack": "5.36.2",
"webpack-cli": "4.7.0"
},
"dependencies": {}
}