-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.17 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.17 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
{
"name": "python-import-copier",
"displayName": "Python Import Copier",
"description": "Copy Python import paths instantly",
"keywords": [
"python",
"import",
"copy",
"antigravity",
"module",
"clipboard",
"auto import",
"python import",
"import helper",
"import path"
],
"version": "0.0.5",
"icon": "images/icon.png",
"publisher": "Suraj1089",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Suraj1089/python-import-copier"
},
"bugs": {
"url": "https://github.com/Suraj1089/python-import-copier/issues"
},
"homepage": "https://github.com/Suraj1089/python-import-copier#readme",
"categories": [
"Programming Languages",
"Keybindings"
],
"engines": {
"vscode": "^1.85.0"
},
"main": "./out/extension.js",
"activationEvents": [],
"contributes": {
"commands": [
{
"command": "python-import-copier.copyPythonImport",
"title": "Python Import Copier: Copy Python Import"
}
],
"keybindings": [
{
"command": "python-import-copier.copyPythonImport",
"key": "ctrl+u",
"mac": "cmd+u",
"when": "editorTextFocus && editorLangId == python"
}
],
"configuration": {
"title": "Python Import Copier",
"properties": {
"python-import-copier.pythonSourceRoot": {
"type": "string",
"default": "",
"description": "Optional source root folder (for example: src). If set, this prefix is removed when generating Python module paths."
},
"python-import-copier.showCopyNotification": {
"type": "boolean",
"default": true,
"description": "Show a status bar notification after copying a Python import statement. Set to false to disable."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"compile-tests": "tsc -p ./tsconfig.test.json",
"test": "npm run compile-tests && node --test out-test/test"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/vscode": "^1.85.0",
"typescript": "^5.4.2"
}
}