-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
{
"name": "scalene",
"displayName": "Scalene",
"description": "Scalene: An AI-powered CPU+GPU+memory profiler for Python",
"version": "0.0.10",
"repository": "https://github.com/plasma-umass/scalene-vscode-extension",
"publisher": "EmeryBerger",
"sponsor": {
"url": "https://github.com/sponsors/emeryberger"
},
"icon" : "./scalene-icon.png",
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Programming Languages",
"Debuggers",
"Machine Learning"
],
"keywords": [
"profiler",
"Python",
"memory",
"CPU",
"GPU"
],
"activationEvents": [
"onCommand:extension.scaleneView"
],
"main": "./extension.js",
"contributes": {
"commands": [{
"command": "scalene.profile",
"title": "Scalene: AI-powered profiling for Python"
}]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.82.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"eslint": "^8.47.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"typescript": "^5.1.6",
"@vscode/test-electron": "^2.3.4"
}
}