-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
189 lines (189 loc) · 4.69 KB
/
package.json
File metadata and controls
189 lines (189 loc) · 4.69 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
{
"name": "oneapi-samples",
"displayName": "Code Sample Browser for Intel Software Developer Tools",
"description": "Browse samples for Intel oneAPI Toolkits",
"publisher": "intel-corporation",
"version": "0.0.64",
"license": "MIT",
"icon": "media/oneapi-logo.png",
"keywords": [
"intel",
"oneapi",
"sycl",
"dpc++",
"iot"
],
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "intel.oneAPISamples.clean",
"title": "Intel oneAPI: Clean local sample cache and refresh",
"when": "false"
},
{
"command": "intel.oneAPISamples.refresh",
"title": "Intel oneAPI: Refresh/update sample tree",
"when": "false",
"icon": "$(refresh)"
},
{
"command": "intel.oneAPISamples.create",
"title": "Create",
"icon": "$(file-directory-create)"
},
{
"command": "intel.oneAPISamples.readme",
"title": "Open Readme",
"icon": "$(globe)"
},
{
"command": "intel.oneAPISamples.quickpick",
"title": "Intel oneAPI: Browse Samples",
"icon": "$(search)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "inteloneapisamples",
"title": "Intel oneAPI",
"icon": "media/oneapi-logo.svg"
}
]
},
"views": {
"inteloneapisamples": [
{
"id": "intel.oneAPISamples.tree",
"name": "Samples"
}
]
},
"menus": {
"view/item/context": [
{
"command": "intel.oneAPISamples.create",
"when": "view == intel.oneAPISamples.tree && viewItem == sample"
},
{
"command": "intel.oneAPISamples.create",
"when": "view == intel.oneAPISamples.tree && viewItem == sample",
"group": "inline"
},
{
"command": "intel.oneAPISamples.readme",
"when": "view == intel.oneAPISamples.tree && viewItem == sample"
},
{
"command": "intel.oneAPISamples.readme",
"when": "view == intel.oneAPISamples.tree && viewItem == sample",
"group": "inline"
}
],
"view/title": [
{
"command": "intel.oneAPISamples.refresh",
"when": "view == intel.oneAPISamples.tree",
"group": "navigation"
},
{
"command": "intel.oneAPISamples.quickpick",
"when": "view == intel.oneAPISamples.tree",
"group": "navigation"
}
],
"commandPalette": [
{
"command": "intel.oneAPISamples.create",
"when": "false"
}
]
},
"configuration": {
"title": "Intel oneAPI Sample Browser",
"properties": {
"intelOneAPI.samples.baseURL": {
"type": "string",
"default": null,
"description": "Base URL for the samples."
},
"intelOneAPI.samples.pathToCLI": {
"type": "string",
"default": null,
"description": "Specifies an absolute path of 'oneapi-cli' to use for sample acquisition."
},
"intelOneAPI.samples.skipDependencyChecks": {
"type": "boolean",
"default": false,
"description": "Set to TRUE to stop checking samples for required dependencies."
},
"intelOneAPI.samples.sampleLanguage": {
"type": "string",
"default": "cpp",
"description": "(Deprecated) Specifies the language for the sample tree to use."
},
"intelOneAPI.samples.sampleLanguages": {
"type": "array",
"default": [
"cpp",
"python",
"fortran"
],
"description": "Specifies the languages for the sample tree to use."
},
"intelOneAPI.samples.ignoreOsFilter": {
"type": "boolean",
"default": false,
"description": "By default, samples are only shown for the OS you are running. To show samples for all Operating Systems, select TRUE."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "eslint -c .eslintrc.js --fix --ext .ts ./",
"package": "vsce package",
"ui-test": "extest setup-and-run --yarn out/test/ui/*.js"
},
"overrides": {
"glob": "^11.0.0 || >=11.1.0"
},
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"@types/node-fetch": "^2.6.8",
"@types/request-promise": "^4.1.50",
"@types/semver": "^7.5.4",
"@types/vscode": "1.83",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vscode/test-electron": "^2.3.6",
"@vscode/vsce": "^3.5.0",
"chai": "^4.3.10",
"eslint": "^8.52.0",
"mocha": "^10.8.2",
"typescript": "^5.2.2",
"vscode-extension-tester": "^5.10.0"
},
"dependencies": {
"node-fetch": "^2.7.0",
"semver": "^7.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/intel/vscode-sample-browser.git"
}
}