-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.28 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
{
"name": "termin-all-or-nothing",
"displayName": "Termin-All-or-Nothing",
"description": "Prevent cyborg editors (half-editor, half-terminal).",
"publisher": "groogle",
"repository": {
"type": "git",
"url": "https://github.com/leep-frog/termin-all-or-nothing"
},
"version": "6.0.3",
"engines": {
"vscode": "^1.81.0"
},
"categories": [
"Other"
],
"icon": "logo.png",
"activationEvents": [
"onStartupFinished",
"onCommand:termin-all-or-nothing.autoClosePanel.execute"
],
"main": "./bundled-out/extension.js",
"contributes": {
"commands": [
{
"command": "termin-all-or-nothing.closePanel",
"title": "Termin-All-Or-Nothing: Close Panel"
},
{
"command": "termin-all-or-nothing.openPanel",
"title": "Termin-All-Or-Nothing: Open Panel"
},
{
"command": "termin-all-or-nothing.execute",
"title": "Termin-All-Or-Nothing: Execute a command wrapped with termin-all-or-nothing options specified"
}
],
"keybindings": []
},
"scripts": {
"compile": "tsc -p ./",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=bundled-out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"lint": "eslint src --fix --ext ts",
"posttest": "echo 'Open the following file for html coverage report:\nfile:///C:/Users/gleep/Desktop/Coding/vs-code/termin-all-or-nothing/coverage/index.html'",
"pretest": "npm run compile && npm run esbuild",
"test": "vscode-test --coverage --coverageReporter lcov --coverageReporter html",
"test-compile": "tsc -p ./",
"vscode:prepublish": "npm run test && npm run esbuild-base -- --minify",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.81.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.20.1",
"eslint": "^9.16.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@leep-frog/vscode-test-stubber": "^2.0.2"
}
}