-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.34 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
{
"name": "cppclassgenerator",
"displayName": "42 C++ Orthodox Canonical Form Class Generator",
"description": "Automatic generation of C++ classes in orthodox canonical form for 42's projects",
"version": "1.1.1",
"publisher": "DamienHubleur",
"license: ": "SEE LICENSE IN license.txt",
"icon": "resources/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/dams333/CPP_Class_Generator"
},
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Formatters",
"Programming Languages"
],
"keywords": [
"42",
"cpp",
"c++",
"class",
"generator",
"orthodox",
"canonical",
"form"
],
"activationEvents": [
"onCommand:cppclassgenerator.openPannel"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "cppclassgenerator.openPannel",
"title": "Open C++ orthodox canonical class generator"
}
],
"configuration": {
"title": "C++ Class generator",
"properties": {
"cppclassgenerator.defaultGetter": {
"type": "boolean",
"default": true,
"description": "Is the \"create a getter\" box checked by default."
},
"cppclassgenerator.defaultSetter": {
"type": "boolean",
"default": false,
"description": "Is the \"create a setter\" box checked by default."
},
"cppclassgenerator.defaultDebug": {
"type": "boolean",
"default": true,
"description": "Is the \"generate debug messages\" box checked by default."
}
}
}
},
"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/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.64.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vscode/test-electron": "^2.1.2",
"eslint": "^8.6.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"ovsx": "^0.3.0",
"vsce": "^2.6.7"
}
}