-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.91 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
{
"name": "pyxt",
"displayName": "PyXT",
"description": "Python eXTensions for VS Code",
"author": "Daniel Miller",
"repository": "https://github.com/millerdev/pyxt",
"license": "See LICENSE file",
"homepage": "https://github.com/millerdev/pyxt",
"version": "0.4.0",
"publisher": "millerdev",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:pyxt.command",
"onCommand:pyxt.ag",
"onCommand:pyxt.argwrap",
"onCommand:pyxt.isort",
"onCommand:pyxt.open",
"onCommand:pyxt.python",
"onCommand:pyxt.rename",
"onCommand:pyxt.replace"
],
"contributes": {
"commands": [
{
"command": "pyxt.command",
"title": "PyXT: Command"
},
{
"command": "pyxt.ag",
"title": "PyXT: Ag (The Silver Searcher)"
},
{
"command": "pyxt.argwrap",
"title": "PyXT: ArgWrap"
},
{
"command": "pyxt.isort",
"title": "PyXT: isort"
},
{
"command": "pyxt.open",
"title": "PyXT: Open File"
},
{
"command": "pyxt.python",
"title": "PyXT: Python"
},
{
"command": "pyxt.rename",
"title": "PyXT: Rename"
},
{
"command": "pyxt.replace",
"title": "PyXT: Replace"
}
],
"configuration": {
"type": "object",
"title": "PyXT",
"properties": {
"pyxt.pythonPath": {
"type": "string",
"default": "",
"description": "Python interpreter path. Recommended: create a virtualenv with Python 3.7+ and set this to the absolute path to its Python executable."
},
"pyxt.agPath": {
"type": "string",
"default": "ag",
"description": "Ag (The Silver Searcher) executable path."
},
"pyxt.userScript": {
"type": "string",
"default": null,
"markdownDescription": "File path or importable Python module path referencing user-defined commands. See [Adding your own custom commands](https://github.com/millerdev/pyxt/#adding-your-own-custom-commands) in the [PyXT README](https://github.com/millerdev/pyxt/) for more details."
}
}
}
},
"main": "./dist/extension",
"scripts": {
"test": "mocha client/test",
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"pkg": "vsce package",
"pub:vsce": "vsce publish -p $VSCE_PAT",
"pub:ovsx": "ovsx publish",
"pub": "npm run pub:vsce && npm run pub:ovsx"
},
"devDependencies": {
"@types/vscode": "^1.50.0",
"mocha": "^8.4.0",
"ovsx": "^0.1.0",
"proxyquire": "^2.1.3",
"sinon": "^11.1.1",
"vsce": "^1.88.0",
"vscode-test": "^1.5.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"lodash": "^4.17.21",
"vscode-languageclient": "^5.2.1"
}
}