-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.06 KB
/
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
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
{
"name": "vscode-python-typehint",
"displayName": "Python Type Hint",
"version": "1.5.1",
"publisher": "njqdev",
"description": "Type hint completion for Python.",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/njqdev/vscode-python-typehint"
},
"license": "MIT",
"categories": [
"Programming Languages"
],
"keywords": [
"Python",
"typehint",
"completion",
"autocompletion",
"parameter"
],
"engines": {
"vscode": "^1.81.0"
},
"activationEvents": [
"onLanguage:python"
],
"main": "./dist/extension",
"contributes": {
"commands": [],
"languages": [
{
"id": "python",
"aliases": [
"Python"
],
"extensions": [
".py"
]
}
],
"configuration": {
"title": "Python Type Hint",
"properties": {
"workspace.searchEnabled": {
"type": "boolean",
"default": true,
"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."
},
"workspace.searchLimit": {
"type": "number",
"default": 10,
"description": "The maximum number of files searched in a workspace search. Has no effect if workspace searching is disabled."
}
}
}
},
"scripts": {
"package": "vsce package",
"publish": "vsce publish",
"vscode:prepublish": "webpack --mode production",
"lint": "eslint --fix --ext .ts .",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"test-compile": "tsc -p ./",
"test": "npm run test-compile && node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.9",
"@types/vscode": "^1.81.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vscode/test-electron": "^2.4.1",
"eslint": "^8.48.0",
"glob": "^10.3.4",
"mocha": "^10.7.3",
"ts-loader": "^9.4.4",
"tslint": "^6.1.3",
"typescript": "^5.2.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}