-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 914 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 914 Bytes
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
{
"name": "py-paste-indent",
"displayName": "Python Paste And Indent",
"description": "paste and indent for python",
"version": "0.4.0",
"publisher": "hyesun",
"extensionKind": [
"ui"
],
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:python"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "pyPasteIndent.pasteIndent",
"title": "PyPasteIndent"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "^8.10.64",
"@types/vscode": "^1.40.0",
"tslint": "^5.20.1",
"typescript": "^3.9.7",
"vitest": "^4.1.5"
},
"repository": {
"type": "git",
"url": "https://github.com/sunhs/py-paste-indent.git"
},
"dependencies": {
"@types/vscode": "^1.40.0"
}
}