-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
64 lines (64 loc) · 1.86 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
{
"name": "c-cpp-project-generator",
"displayName": "C/C++ Project Generator",
"description": "Generate C/C++ Projects",
"version": "1.2.13",
"icon": "resources/logo.png",
"publisher": "danielpinto8zz6",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.createCProject",
"onCommand:extension.createCppProject"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.createCProject",
"title": "Create C project"
},
{
"command": "extension.createCppProject",
"title": "Create C++ project"
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielpinto8zz6/c-cpp-project-generator.git"
},
"author": "danielpinto8zz6",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielpinto8zz6/c-cpp-project-generator/issues"
},
"homepage": "https://github.com/danielpinto8zz6/c-cpp-project-generator#readme",
"scripts": {
"vscode:prepublish": "npm run build",
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run build",
"test": "node ./out/test/runTest.js",
"release": "release-it --disable-metrics --ci",
"lint": "tslint -c tslint.json \"src/**/*.ts\" --fix"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"@types/vscode": "^1.75.0",
"git-cz": "^4.9.0",
"release-it": "^15.6.0",
"tslint": "^6.1.3",
"typescript": "^4.9.5",
"vscode-test": "^1.6.1"
},
"dependencies": {
"@types/fs-extra": "^11.0.1",
"fs-extra": "^11.1.0"
}
}