-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
61 lines (61 loc) · 1.43 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
{
"name": "tasks-shell-input",
"displayName": "Tasks Shell Input",
"description": "Use shell commands as input for your tasks",
"icon": "icon.png",
"version": "1.13.1",
"publisher": "augustocdias",
"repository": {
"url": "https://github.com/augustocdias/vscode-shell-command"
},
"engines": {
"vscode": "^1.37.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:shellCommand.execute"
],
"main": "./out/extension.js",
"contributes": {
"menus": {
"commandPalette": [
{
"command": "shellCommand.execute",
"when": "false"
}
]
},
"commands": [
{
"command": "shellCommand.execute",
"title": "Execute shell command"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lintd": "eslint_d src --ext .ts",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"lintd:fix": "npm run lintd -- --fix",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/glob": "8.1.0",
"@types/node": "20.11.30",
"@types/vscode": "1.37.0",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"eslint": "8.57.0",
"glob": "10.3.10",
"mocha": "10.3.0",
"typescript": "5.4.3",
"vitest": "1.4.0",
"vscode-test": "1.6.1"
}
}