-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.5 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
{
"name": "cpp-project-creator",
"displayName": "C++ Project Creator",
"description": "Easily create C++ project for GCC",
"version": "0.9.9",
"publisher": "ruvn-1fgas",
"icon": "logo.png",
"repository": {
"url": "https://github.com/ruvn-1fgas/cpp-project-creator"
},
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:cpp-project-creator.createProject",
"workspaceContains:.vscode/.dontdelete"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "cpp-project-creator.createProject",
"title": "C++ Project Creator: Create new C++ project"
}
],
"keybindings": [
{
"command": "workbench.action.tasks.test",
"key": "f7"
},
{
"command": "workbench.action.tasks.build",
"key": "ctrl+f7"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/node": "^12.12.31",
"@types/node-fetch": "^2.5.7",
"@types/vscode": "^1.43.0",
"tslint": "^6.1.2",
"typescript": "^3.9.10"
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}