-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.64 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-group",
"displayName": "cpp-group",
"description": "This extension groups a .cpp file together with the appropriate .h file in the editor tab view",
"version": "1.1.0",
"author": {
"name": "sliptrixx",
"email": "sliptrixx@hibzz.games",
"url": "https://hibzz.games/"
},
"license":"MIT",
"publisher": "hibzzgames",
"repository": {
"type": "git",
"url": "https://github.com/sliptrixx/cpp-group.git"
},
"bugs": {
"url": "https://github.com/sliptrixx/cpp-group/issues"
},
"keywords": ["c++", "group", "tab management"],
"engines": { "vscode": "^1.89.0" },
"categories": ["Other"],
"activationEvents": ["onStartupFinished"],
"main": "./dist/extension",
"scripts": {
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"vscode:prepublish": "npm run package",
"package": "npm run check-types && node esbuild.js --production"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.89.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"typescript": "^5.4.5"
},
"contributes": {
"configuration": {
"title": "cpp-group",
"properties": {
"cpp-group.isSourceLeft": {
"type": "boolean",
"default": true,
"description": "Place the source file to the left of the header file"
}
}
}
}
}