-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (59 loc) · 1.67 KB
/
package.json
File metadata and controls
63 lines (59 loc) · 1.67 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
{
"name": "runentrypoint",
"displayName": "runEntryPoint",
"description": "Run entry point in status bar, similar to the way you run your entry point in Pycharm.",
"version": "0.0.3",
"publisher": "DunHou",
"icon": "runEntryPoint.png",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/DunHouGo/runentrypoint.git"
},
"contributes": {
"commands": [
{ "command": "runEntryPoint.run", "title": "Run", "icon": "$(play)" },
{ "command": "runEntryPoint.debug", "title": "Debug", "icon": "$(debug-alt)" },
{ "command": "runEntryPoint.selectConfig", "title": "Select Configuration" },
{ "command": "runEntryPoint.addConfig", "title": "Add Configuration" },
{ "command": "runEntryPoint.editConfig", "title": "Edit Settings" }
],
"configuration": {
"title": "runEntryPoint",
"properties": {
"runEntryPoint.clearPreviousOutput": {
"type": "boolean",
"default": true,
"description": "Clear terminal before running."
},
"runEntryPoint.configurations": {
"type": "array",
"default": []
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.70.1",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"typescript": "^5.9.3"
}
}