-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 4.18 KB
/
package.json
File metadata and controls
150 lines (150 loc) · 4.18 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "cpm-cmake-manager",
"publisher": "arno-dev",
"displayName": "CPM.cmake Manager",
"description": "Manage packages that have been retrieved using CPM.cmake",
"version": "0.1.0",
"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",
"email": "vscode@arno.dev"
},
"sponsor": {
"url": "https://github.com/sponsors/itavero"
},
"engines": {
"vscode": "^1.102.0"
},
"categories": [
"Other"
],
"keywords": [
"CPM.cmake",
"CPM",
"CMake",
"package manager"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#DCE3EC",
"theme": "light"
},
"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",
"clean": "npx rimraf -g out/* *.vsix",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test",
"package": "npx dotenv vsce package --",
"publish": "npx dotenv vsce publish --",
"release": "npx dotenv release-it --"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^7.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^24.9.2",
"@types/semver": "^7.7.0",
"@types/vscode": "^1.102.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.45.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.6.2",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.0",
"glob": "^11.0.3",
"mocha": "^11.7.4",
"release-it": "^19.0.5",
"rimraf": "^6.1.0",
"typescript": "~5.8.3"
},
"extensionDependencies": [
"ms-vscode.cmake-tools"
],
"dependencies": {
"semver": "^7.7.2",
"simple-git": "^3.29.0",
"vscode-cmake-tools": "^1.5.0"
}
}