forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.54 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
{
"name": "python",
"displayName": "Python",
"description": "Python auto complete and linting",
"version": "0.0.1",
"publisher": "donjayamanne",
"license": "SEE LICENSE IN LICENSE or README.MD",
"homepage": "https://github.com/DonJayamanne/pythonVSCode/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/DonJayamanne/pythonVSCode"
},
"bugs": {
"url": "https://github.com/DonJayamanne/pythonVSCode/issues"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#0000FF",
"theme": "dark"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Languages",
"Linters"
],
"activationEvents": [
"onLanguage:python",
"onLanguage:plaintext"
],
"main": "../../out/client/extension",
"contributes": {
"debuggers": [
{
"type": "python",
"label": "Python",
"enableBreakpointsFor": {
"languageIds": [
"python"
]
},
"program": "./out/client/debugger/main.js",
"runtime": "node",
"configurationAttributes": {
"launch": {
"required": [
"program"
],
"properties": {
"program": {
"type": "string",
"description": "Workspace relative path to a text file.",
"default": "__init__.py"
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch.",
"default": true
}
}
}
},
"initialConfigurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"program": "__init__.py",
"stopOnEntry": true
}
]
}
],
"configuration": {
"type": "object",
"title": "Python Configuration",
"properties": {
"python.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"dependencies": {
"tmp": "0.0.28",
"vscode-debugadapter": "^1.0.1",
"vscode-debugprotocol": "^1.0.1",
"vscode-languageclient": "^1.1.0"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
}
}