-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.33 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
94
95
96
97
98
99
100
101
102
103
104
{
"author": {
"name": "Anton Baryshnikau"
},
"license": "SEE LICENSE IN LICENSE.txt",
"name": "cppref",
"publisher": "cppref",
"displayName": "Cppref",
"repository": {
"url": "https://github.com/barynton/cppref.git",
"type": "git"
},
"description": "Cpp refactoring tool",
"version": "0.1.2",
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.createFilePair",
"onCommand:extension.implementVirtualFunctions",
"onCommand:extension.changeDeclaration",
"onCommand:extension.implementFunction",
"onCommand:extension.moveToCpp"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.implementVirtualFunctions",
"title": "Cppref: implement virtual functions"
},
{
"command": "extension.createFilePair",
"title": "Cppref: create file pair"
},
{
"command": "extension.changeDeclaration",
"title": "Cppref: chnage declaration"
},
{
"command": "extension.implementFunction",
"title": "Cppref: implement function"
},
{
"command": "extension.moveToCpp",
"title": "Cppref: move to cpp"
}
],
"menus": {
"editor/context": [
{
"command": "extension.implementVirtualFunctions",
"when": "resourceLangId == cpp"
},
{
"command": "extension.changeDeclaration",
"when": "resourceLangId == cpp"
},
{
"command": "extension.changeDeclaration",
"when": "resourceLangId == cpp"
}
]
},
"configuration": {
"title": "Cppref",
"properties": {
"cppref.definition_with_namespace": {
"type": "boolean",
"default": true,
"description": "If set, definition header containes namespace. Otherwise outer namespace is used."
},
"cppref.use_nested_namespaces": {
"type": "boolean",
"default": true,
"description": "If set, namespaceA::namespaceB {} is used. Otherwise namespaceA { namespaceB {}} is used."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.11.6",
"@types/vscode": "^1.39.0",
"typescript": "^3.8.3",
"tslint": "^5.20.0"
},
"dependencies": {
"path": "0.12.7"
},
"extensionDependencies": [
"ms-vscode.cpptools"
],
"dependencies": {
"vsce": "^1.67.1"
}
}