-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.7 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "cpm-cmake-manager",
"publisher": "arno-dev",
"displayName": "CPM.cmake Manager",
"description": "Manage packages that have been retrieved using CPM.cmake",
"version": "0.0.4",
"license": "SEE LICENSE IN LICENSE.txt",
"homepage": "https://github.com/itavero/vscode-cpm-cmake-manager",
"repository": {
"type": "git",
"url": "https://github.com/itavero/vscode-cpm-cmake-manager.git"
},
"bugs": {
"url": "https://github.com/itavero/vscode-cpm-cmake-manager/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/itavero"
},
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Other"
],
"keywords": [
"cpm",
"cpm.cmake",
"cmake",
"package manager"
],
"qna": false,
"activationEvents": [
"workspaceContains:CMakeLists.txt",
"workspaceContains:**/CMakeLists.txt"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "CPM.cmake Manager",
"properties": {
"cpm-cmake-manager.cachePath": {
"title": "Path to global CPM.cmake source cache",
"type": [
"string",
"null"
],
"default": null,
"description": "Path to the global CPM.cmake cache. If not set, the extension will look at the CPM_SOURCE_CACHE environment variable."
}
}
},
"commands": [
{
"command": "cpm-cmake-manager.clearEntireCache",
"title": "Clear entire source cache (and reconfigure)",
"icon": "$(trash)",
"category": "CPM.cmake Manager"
},
{
"command": "cpm-cmake-manager.clearCache",
"title": "Clear specific packages in source cache",
"icon": "$(trash)",
"category": "CPM.cmake Manager",
"when": "view == cpmPackages"
},
{
"command": "cpm-cmake-manager.openPackage",
"title": "Open source directory in new window",
"icon": "$(empty-window)",
"when": "view == cpmPackages"
}
],
"views": {
"explorer": [
{
"id": "cpmPackages",
"name": "CPM.cmake Packages",
"when": "cpm-cmake-manager.showTreeView"
}
]
},
"viewsWelcome": [
{
"view": "cpmPackages",
"contents": "No CPM.cmake packages found in the CMake cache.\nPerhaps the CMake is still busy configuring the project, or CPM.cmake is not being used in this project.\n[Configure CMake project](command:cmake.configure)\n[Learn more about CPM.cmake](https://github.com/cpm-cmake/CPM.cmake)"
}
],
"menus": {
"view/title": [
{
"command": "cpm-cmake-manager.clearCache",
"when": "view == cpmPackages",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "cpm-cmake-manager.openPackage",
"when": "view == cpmPackages",
"group": "inline"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.62.0",
"@vscode/test-electron": "^2.4.1",
"eslint": "^8.36.0",
"glob": "^8.1.0",
"mocha": "^11.0.1",
"typescript": "^5.7.2"
},
"extensionDependencies": [
"ms-vscode.cmake-tools"
],
"dependencies": {
"semver": "^7.6.3",
"simple-git": "^3.27.0",
"vscode-cmake-tools": "^1.2.0"
}
}