-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 4.24 KB
/
package.json
File metadata and controls
151 lines (151 loc) · 4.24 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
{
"name": "oneapi-analysis-configurator",
"displayName": "Analysis Configurator for Intel Software Developer Tools",
"description": "Build and performance analysis of your Intel® oneAPI applications.",
"publisher": "intel-corporation",
"version": "0.1.32",
"license": "MIT",
"icon": "media/oneapi-logo.png",
"keywords": [
"intel",
"oneapi",
"Advisor",
"vtune",
"iot"
],
"engines": {
"vscode": "^1.81.0"
},
"categories": [
"Snippets",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"snippets": [
{
"language": "cpp",
"path": "./snippets.json"
}
],
"commands": [
{
"command": "intel-corporation.oneapi-analysis-configurator.generateTaskJson",
"title": "Intel oneAPI: Generate tasks"
},
{
"command": "intel-corporation.oneapi-analysis-configurator.quickBuild",
"title": "Intel oneAPI: Quick build current file with ICPX"
},
{
"command": "intel-corporation.oneapi-analysis-configurator.quickBuildSycl",
"title": "Intel oneAPI: Quick build current file with ICPX and SYCL enabled"
},
{
"command": "intel-corporation.oneapi-analysis-configurator.launchAdvisor",
"title": "Intel oneAPI: Launch Advisor"
},
{
"command": "intel-corporation.oneapi-analysis-configurator.launchVTune",
"title": "Intel oneAPI: Launch VTune Profiler"
},
{
"command": "intel-corporation.oneapi-analysis-configurator.configureCppProperties",
"title": "Intel oneAPI: Configure cpp properties configuration"
}
],
"configuration": [
{
"title": "Analysis Configurator for Intel Software Developer Tools",
"properties": {
"intel-corporation.oneapi-analysis-configurator.ONEAPI_ROOT": {
"type": "string",
"description": "%capabilities.ONEAPI_ROOT.description%"
},
"intel-corporation.oneapi-analysis-configurator.binary-path": {
"type": "string",
"description": "Path of the executable to analyze",
"scope": "resource"
},
"intel-corporation.oneapi-analysis-configurator.advisor.install-root": {
"type": "string",
"description": "Root install location for Intel® Advisor",
"scope": "window"
},
"intel-corporation.oneapi-analysis-configurator.vtune.install-root": {
"type": "string",
"description": "Root install location for Intel® VTune™ Profiler",
"scope": "window"
},
"intel-corporation.oneapi-analysis-configurator.advisor.project-folder": {
"type": "string",
"description": "Path of the Intel® Advisor project folder",
"scope": "resource"
},
"intel-corporation.oneapi-analysis-configurator.vtune.project-folder": {
"type": "string",
"description": "Path of the Intel® VTune™ Profiler project folder",
"scope": "resource"
}
}
}
],
"taskDefinitions": [
{
"type": "toolProvider",
"properties": {
"test1": {
"type": "string",
"description": "Testing"
}
}
}
]
},
"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 --ext .ts --fix ./src/*",
"package": "vsce package",
"snippets": "npm run compile | node ./out/utils/snippets.js",
"ui-test": "extest setup-and-run -o ./src/test/ui/configs/settings.json --yarn out/test/ui/*.js"
},
"overrides": {
"glob": "^11.0.0 || >=11.1.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.0",
"@types/vscode": "^1.81.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vscode/vsce": "^3.5.0",
"chai": "^4.3.7",
"eslint": "^8.47.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.8.2",
"typescript": "^5.1.6",
"vscode-extension-tester": "^5.9.0",
"vscode-test": "^1.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/intel/vscode-oneapi-analysis-configurator.git"
},
"dependencies": {
"rimraf": "^6.1.2",
"xml2js": "^0.6.2"
}
}