Skip to content

Commit 7585d9b

Browse files
committed
Fix dev vulnerabilities
1 parent e75ca3e commit 7585d9b

File tree

2 files changed

+43
-45
lines changed

2 files changed

+43
-45
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 39 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
{
22
"name": "vscode-python-typehint",
3-
"displayName": "Python Type Hint",
4-
"version": "1.2.0",
5-
"publisher": "njqdev",
6-
"description": "Type hint completion for Python.",
7-
"icon": "images/icon.png",
3+
"displayName": "Python Type Hint",
4+
"version": "1.2.0",
5+
"publisher": "njqdev",
6+
"description": "Type hint completion for Python.",
7+
"icon": "images/icon.png",
88
"repository": {
99
"type": "git",
1010
"url": "https://github.com/njqdev/vscode-python-typehint"
1111
},
12-
"license": "MIT",
12+
"license": "MIT",
1313
"categories": [
1414
"Programming Languages"
15-
],
16-
"keywords": [
17-
"Python",
18-
"typehint",
19-
"completion",
20-
"autocompletion",
21-
"parameter"
22-
],
23-
"engines": {
15+
],
16+
"keywords": [
17+
"Python",
18+
"typehint",
19+
"completion",
20+
"autocompletion",
21+
"parameter"
22+
],
23+
"engines": {
2424
"vscode": "^1.43.0"
2525
},
2626
"activationEvents": [
@@ -39,35 +39,33 @@
3939
".py"
4040
]
4141
}
42-
],
43-
"configuration": {
44-
"title": "Python Type Hint",
45-
"properties": {
46-
"workspace.searchEnabled": {
47-
"type": "boolean",
48-
"default": true,
49-
"description": "If enabled, other files in the workspace are searched when estimating types for a parameter. Disabling this will increase performance, but may reduce estimation accuracy."
50-
},
51-
"workspace.searchLimit": {
52-
"type": "number",
53-
"default": 20,
54-
"description": "The maximum number of files searched in a workspace search."
55-
}
56-
}
57-
}
42+
],
43+
"configuration": {
44+
"title": "Python Type Hint",
45+
"properties": {
46+
"workspace.searchEnabled": {
47+
"type": "boolean",
48+
"default": true,
49+
"description": "If enabled, other files in the workspace are searched when estimating types for a parameter. Disabling this will increase performance, but may reduce estimation accuracy."
50+
},
51+
"workspace.searchLimit": {
52+
"type": "number",
53+
"default": 20,
54+
"description": "The maximum number of files searched in a workspace search."
55+
}
56+
}
57+
}
5858
},
5959
"scripts": {
6060
"package": "vsce package",
61-
"publish": "vsce publish",
62-
63-
"vscode:prepublish": "webpack --mode production",
64-
"compile": "webpack --mode none",
65-
"watch": "webpack --mode none --watch",
66-
67-
"postinstall": "node node_modules/vscode/bin/install",
68-
"just-test": "node node_modules/vscode/bin/test",
69-
"test-compile": "tsc -p ./ && npm run compile",
70-
"test": "npm run test-compile && node node_modules/vscode/bin/test"
61+
"publish": "vsce publish",
62+
"vscode:prepublish": "webpack --mode production",
63+
"compile": "webpack --mode none",
64+
"watch": "webpack --mode none --watch",
65+
"postinstall": "node node_modules/vscode/bin/install",
66+
"just-test": "node node_modules/vscode/bin/test",
67+
"test-compile": "tsc -p ./ && npm run compile",
68+
"test": "npm run test-compile && node node_modules/vscode/bin/test"
7169
},
7270
"devDependencies": {
7371
"@types/glob": "^7.1.1",

0 commit comments

Comments
 (0)