-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 936 Bytes
/
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
{
"name": "python-input",
"displayName": "Debug Session Inputter for Python",
"description": "デバッグセッション中のテキスト入力をサポートする",
"version": "0.0.1",
"publisher": "ken-hashimoto",
"private": true,
"license": "MIT",
"engines": {
"vscode": "^1.74.0"
},
"extensionKind": [
"ui",
"workspace"
],
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"views": {
"debug": [
{
"type": "webview",
"id": "PythonInput.InputView",
"name": "Python Input"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"typescript": "^5.1.3"
}
}