Skip to content

Commit 43b6986

Browse files
committed
Release 0.9.0
1 parent bf29047 commit 43b6986

File tree

1 file changed

+135
-135
lines changed

1 file changed

+135
-135
lines changed

package.json

Lines changed: 135 additions & 135 deletions
Original file line numberDiff line numberDiff line change
@@ -1,136 +1,136 @@
11
{
2-
"name": "command-server",
3-
"displayName": "Command server",
4-
"description": "Exposes a file-based RPC API for running VSCode commands",
5-
"publisher": "pokey",
6-
"license": "MIT",
7-
"repository": {
8-
"type": "git",
9-
"url": "https://github.com/pokey/command-server"
10-
},
11-
"version": "0.8.2",
12-
"engines": {
13-
"vscode": "^1.53.0"
14-
},
15-
"categories": [
16-
"Other"
17-
],
18-
"activationEvents": [
19-
"*"
20-
],
21-
"main": "./out/extension.js",
22-
"extensionKind": [
23-
"ui"
24-
],
25-
"capabilities": {
26-
"untrustedWorkspaces": {
27-
"supported": "limited",
28-
"description": "Untrusted workspaces can't override allowList / denyList",
29-
"restrictedConfigurations": [
30-
"allowList",
31-
"denyList"
32-
]
33-
}
34-
},
35-
"contributes": {
36-
"commands": [
37-
{
38-
"command": "command-server.runCommand",
39-
"title": "Read command description from a file and execute the command"
40-
},
41-
{
42-
"command": "command-server.getFocusedElementType",
43-
"title": "Returns the type of the currently focused element in vscode"
44-
}
45-
],
46-
"keybindings": [
47-
{
48-
"command": "command-server.runCommand",
49-
"key": "ctrl+shift+f17",
50-
"mac": "cmd+shift+f17"
51-
},
52-
{
53-
"command": "command-server.runCommand",
54-
"key": "ctrl+shift+alt+p",
55-
"mac": "cmd+shift+alt+p"
56-
},
57-
{
58-
"command": "command-server.runCommand",
59-
"key": "ctrl+shift+f17",
60-
"mac": "cmd+shift+f17",
61-
"when": "editorTextFocus",
62-
"args": "textEditor"
63-
},
64-
{
65-
"command": "command-server.runCommand",
66-
"key": "ctrl+shift+alt+p",
67-
"mac": "cmd+shift+alt+p",
68-
"when": "editorTextFocus",
69-
"args": "textEditor"
70-
},
71-
{
72-
"command": "command-server.runCommand",
73-
"key": "ctrl+shift+f17",
74-
"mac": "cmd+shift+f17",
75-
"when": "terminalFocus",
76-
"args": "terminal"
77-
},
78-
{
79-
"command": "command-server.runCommand",
80-
"key": "ctrl+shift+alt+p",
81-
"mac": "cmd+shift+alt+p",
82-
"when": "terminalFocus",
83-
"args": "terminal"
84-
}
85-
],
86-
"configuration": {
87-
"title": "Command server",
88-
"properties": {
89-
"command-server.allowList": {
90-
"type": "array",
91-
"default": [
92-
"*"
93-
],
94-
"description": "Commands to allow. Supports simple glob syntax"
95-
},
96-
"command-server.denyList": {
97-
"type": "array",
98-
"default": [],
99-
"description": "Commands to deny. Supports simple glob syntax"
100-
},
101-
"command-server.backgroundWindowProtection": {
102-
"type": "boolean",
103-
"default": false,
104-
"description": "Whether to enable protection against background windows executing a command"
105-
}
106-
}
107-
}
108-
},
109-
"scripts": {
110-
"vscode:prepublish": "yarn run compile",
111-
"compile": "tsc -p ./",
112-
"watch": "tsc -watch -p ./",
113-
"pretest": "yarn run compile && yarn run lint",
114-
"lint": "eslint src --ext ts",
115-
"test": "node ./out/test/runTest.js",
116-
"vscode:uninstall": "node ./out/uninstall.js"
117-
},
118-
"devDependencies": {
119-
"@types/glob": "^7.1.3",
120-
"@types/mocha": "^8.0.4",
121-
"@types/node": "^15.12.1",
122-
"@types/rimraf": "^3.0.0",
123-
"@types/vscode": "^1.53.0",
124-
"@typescript-eslint/eslint-plugin": "^4.9.0",
125-
"@typescript-eslint/parser": "^4.9.0",
126-
"eslint": "^7.15.0",
127-
"glob": "^7.1.6",
128-
"mocha": "^8.1.3",
129-
"typescript": "^4.1.2",
130-
"vscode-test": "^1.4.1"
131-
},
132-
"dependencies": {
133-
"minimatch": "^3.0.4",
134-
"rimraf": "^3.0.2"
135-
}
136-
}
2+
"name": "command-server",
3+
"displayName": "Command server",
4+
"description": "Exposes a file-based RPC API for running VSCode commands",
5+
"publisher": "pokey",
6+
"license": "MIT",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/pokey/command-server"
10+
},
11+
"version": "0.9.0",
12+
"engines": {
13+
"vscode": "^1.53.0"
14+
},
15+
"categories": [
16+
"Other"
17+
],
18+
"activationEvents": [
19+
"*"
20+
],
21+
"main": "./out/extension.js",
22+
"extensionKind": [
23+
"ui"
24+
],
25+
"capabilities": {
26+
"untrustedWorkspaces": {
27+
"supported": "limited",
28+
"description": "Untrusted workspaces can't override allowList / denyList",
29+
"restrictedConfigurations": [
30+
"allowList",
31+
"denyList"
32+
]
33+
}
34+
},
35+
"contributes": {
36+
"commands": [
37+
{
38+
"command": "command-server.runCommand",
39+
"title": "Read command description from a file and execute the command"
40+
},
41+
{
42+
"command": "command-server.getFocusedElementType",
43+
"title": "Returns the type of the currently focused element in vscode"
44+
}
45+
],
46+
"keybindings": [
47+
{
48+
"command": "command-server.runCommand",
49+
"key": "ctrl+shift+f17",
50+
"mac": "cmd+shift+f17"
51+
},
52+
{
53+
"command": "command-server.runCommand",
54+
"key": "ctrl+shift+alt+p",
55+
"mac": "cmd+shift+alt+p"
56+
},
57+
{
58+
"command": "command-server.runCommand",
59+
"key": "ctrl+shift+f17",
60+
"mac": "cmd+shift+f17",
61+
"when": "editorTextFocus",
62+
"args": "textEditor"
63+
},
64+
{
65+
"command": "command-server.runCommand",
66+
"key": "ctrl+shift+alt+p",
67+
"mac": "cmd+shift+alt+p",
68+
"when": "editorTextFocus",
69+
"args": "textEditor"
70+
},
71+
{
72+
"command": "command-server.runCommand",
73+
"key": "ctrl+shift+f17",
74+
"mac": "cmd+shift+f17",
75+
"when": "terminalFocus",
76+
"args": "terminal"
77+
},
78+
{
79+
"command": "command-server.runCommand",
80+
"key": "ctrl+shift+alt+p",
81+
"mac": "cmd+shift+alt+p",
82+
"when": "terminalFocus",
83+
"args": "terminal"
84+
}
85+
],
86+
"configuration": {
87+
"title": "Command server",
88+
"properties": {
89+
"command-server.allowList": {
90+
"type": "array",
91+
"default": [
92+
"*"
93+
],
94+
"description": "Commands to allow. Supports simple glob syntax"
95+
},
96+
"command-server.denyList": {
97+
"type": "array",
98+
"default": [],
99+
"description": "Commands to deny. Supports simple glob syntax"
100+
},
101+
"command-server.backgroundWindowProtection": {
102+
"type": "boolean",
103+
"default": false,
104+
"description": "Whether to enable protection against background windows executing a command"
105+
}
106+
}
107+
}
108+
},
109+
"scripts": {
110+
"vscode:prepublish": "yarn run compile",
111+
"compile": "tsc -p ./",
112+
"watch": "tsc -watch -p ./",
113+
"pretest": "yarn run compile && yarn run lint",
114+
"lint": "eslint src --ext ts",
115+
"test": "node ./out/test/runTest.js",
116+
"vscode:uninstall": "node ./out/uninstall.js"
117+
},
118+
"devDependencies": {
119+
"@types/glob": "^7.1.3",
120+
"@types/mocha": "^8.0.4",
121+
"@types/node": "^15.12.1",
122+
"@types/rimraf": "^3.0.0",
123+
"@types/vscode": "^1.53.0",
124+
"@typescript-eslint/eslint-plugin": "^4.9.0",
125+
"@typescript-eslint/parser": "^4.9.0",
126+
"eslint": "^7.15.0",
127+
"glob": "^7.1.6",
128+
"mocha": "^8.1.3",
129+
"typescript": "^4.1.2",
130+
"vscode-test": "^1.4.1"
131+
},
132+
"dependencies": {
133+
"minimatch": "^3.0.4",
134+
"rimraf": "^3.0.2"
135+
}
136+
}

0 commit comments

Comments
 (0)