-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.68 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
{
"name": "auto-typing-final",
"displayName": "auto-typing-final",
"description": "VS Code extension for auto-typing-final auto-fixer",
"version": "0.0.0",
"publisher": "vrslev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vrslev/auto-typing-final.git"
},
"keywords": ["python", "linting", "mypy"],
"engines": {
"vscode": "^1.93.0"
},
"categories": ["Programming Languages", "Linters", "Formatters"],
"extensionDependencies": ["ms-python.python"],
"activationEvents": ["onLanguage:python", "workspaceContains:*.py"],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"title": "Restart Servers",
"category": "auto-typing-final",
"command": "auto-typing-final.restart"
}
],
"configuration": {
"properties": {
"auto-typing-final.import-style": {
"default": "typing-final",
"enum": ["typing-final", "final"],
"enumDescriptions": [
"Use `import typing` and `typing.Final`",
"Use `from typing import Final` and `Final`"
],
"description": "Import style",
"scope": "resource"
}
}
}
},
"scripts": {
"lint": "biome format --write .",
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"vscode:prepublish": "npm run package",
"package": "webpack --mode production --devtool hidden-source-map"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.1",
"@types/vscode": "^1.95.0",
"@vscode/python-extension": "^1.0.5",
"prettier": "^3.4.1",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}