-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
126 lines (126 loc) · 3.94 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "tach",
"displayName": "Tach",
"description": "Linting support for python files using `tach`.",
"version": "0.19.1",
"preview": true,
"serverInfo": {
"name": "Tach",
"module": "tach"
},
"publisher": "gauge",
"license": "LGPL-3.0-only",
"homepage": "https://github.com/gauge-sh/tach",
"repository": {
"type": "git",
"url": "https://github.com/gauge-sh/tach/.git"
},
"bugs": {
"url": "https://github.com//gauge-sh/tach/issues"
},
"galleryBanner": {
"color": "#1e415e",
"theme": "dark"
},
"keywords": [
"python",
"tach",
"rust",
"lint",
"imports",
"package"
],
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Programming Languages",
"Linters",
"Formatters"
],
"extensionDependencies": [
"ms-python.python"
],
"capabilities": {
"virtualWorkspaces": {
"supported": false,
"description": "Virtual Workspaces are not supported with Tach."
}
},
"activationEvents": [
"onLanguage:python",
"workspaceContains:*.py"
],
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool source-map --config ./webpack.config.js",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"format-check": "prettier --check 'src/**/*.ts' 'build/**/*.yml' '.github/**/*.yml'",
"test": "node ./out/test/runTest.js",
"vsce-package": "vsce package -o tach.vsix"
},
"contributes": {
"configuration": {
"properties": {
"tach.importStrategy": {
"default": "useBundled",
"description": "Defines where `tach` is imported from. This setting may be ignored if `tach.path` is set.",
"enum": [
"useBundled",
"fromEnvironment"
],
"enumDescriptions": [
"Always use the bundled version of `tach`.",
"Use `tach` from environment, fallback to bundled version only if `tach` not available in the environment."
],
"scope": "window",
"type": "string"
},
"tach.interpreter": {
"default": [],
"description": "When set to a path to python executable, extension will use that to launch the server and any subprocess.",
"scope": "resource",
"items": {
"type": "string"
},
"type": "array"
}
}
},
"commands": [
{
"title": "Restart Server",
"category": "Tach",
"command": "tach.restart"
}
]
},
"dependencies": {
"@vscode/python-extension": "^1.0.5",
"fs-extra": "^11.2.0",
"vscode-languageclient": "^8.1.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/node": "16.x",
"@types/vscode": "1.78.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1",
"eslint": "^9.17.0",
"glob": "^11.0.0",
"prettier": "^3.4.2",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}