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
157 lines (157 loc) · 4.33 KB
/
package.json
File metadata and controls
157 lines (157 loc) · 4.33 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
{
"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 (pdb)",
"enableBreakpointsFor": {
"languageIds": [
"python"
]
},
"program": "./out/client/debugger/pdb/debuggerMain.js",
"runtime": "node",
"configurationAttributes": {
"launch": {
"required": [
"program"
],
"properties": {
"program": {
"type": "string",
"description": "Workspace relative path to a text file.",
"default": "__init__.py"
},
"pythonPath": {
"type": "string",
"description": "Path (fully qualified) to python executable. Use this if you want to use a custom pthon executable version.",
"default": ""
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch.",
"default": true
},
"args": {
"type": "array",
"description": "List of arguments for the program",
"default": []
}
}
}
},
"initialConfigurations": [
{
"name": "Python (Pdb)",
"type": "python_pdb",
"request": "launch",
"program": "__init__.py",
"stopOnEntry": true
}
]
},
{
"type": "python_win",
"label": "Python (Windows)",
"enableBreakpointsFor": {
"languageIds": [
"python"
]
},
"program": "./out/client/debugger/vs/VSDebugger.js",
"runtime": "node",
"configurationAttributes": {
"launch": {
"required": [
"program"
],
"properties": {
"program": {
"type": "string",
"description": "Workspace relative path to a text file.",
"default": "__init__.py"
},
"pythonPath": {
"type": "string",
"description": "Path (fully qualified) to python executable. Use this if you want to use a custom pthon executable version.",
"default": ""
},
"args": {
"type": "array",
"description": "List of arguments for the program",
"default": []
}
}
}
},
"initialConfigurations": [
{
"name": "Python (Windows)",
"type": "python_win",
"request": "launch",
"program": "__init__.py"
}
]
}
],
"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": {
"named-js-regexp": "^1.3.1",
"tmp": "0.0.28",
"path": "0.12.7",
"uint64be": "^1.0.1",
"vscode-debugadapter": "^1.0.1",
"vscode-debugprotocol": "^1.0.1",
"vscode-languageclient": "^1.1.0"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
}
}