-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.53 KB
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": "plsmode",
"displayName": "pls mode",
"description": "A friendly project cockpit for VS Code: run or copy repo-local commands without memorizing terminal syntax.",
"version": "0.0.1",
"publisher": "plsmode",
"license": "MIT",
"author": {
"name": "Christian Katzmann"
},
"homepage": "https://github.com/Christian-Katzmann/plsmode#readme",
"repository": {
"type": "git",
"url": "https://github.com/Christian-Katzmann/plsmode.git"
},
"bugs": {
"url": "https://github.com/Christian-Katzmann/plsmode/issues"
},
"keywords": [
"commands",
"terminal",
"workspace",
"tasks",
"project",
"vscode-extension",
"developer-tools"
],
"preview": true,
"packageManager": "pnpm@10.13.1",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"icon": "resources/icon.png",
"galleryBanner": {
"color": "#1f2933",
"theme": "dark"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"description": "pls mode can display and copy configured commands in untrusted workspaces, but command execution is blocked until the workspace is trusted."
}
},
"activationEvents": [
"onView:plsmodeCommands"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "plsmode",
"title": "pls mode",
"icon": "$(terminal)"
}
]
},
"views": {
"plsmode": [
{
"id": "plsmodeCommands",
"name": "Commands",
"type": "webview"
}
]
},
"commands": [
{
"command": "plsmode.refresh",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "plsmode.runItem",
"title": "Run Command",
"icon": "$(play)"
},
{
"command": "plsmode.copyItemCommand",
"title": "Copy Command",
"icon": "$(copy)"
},
{
"command": "plsmode.editItem",
"title": "Edit Command",
"icon": "$(link-external)"
}
],
"menus": {}
},
"scripts": {
"vscode:prepublish": "pnpm compile",
"verify": "pnpm compile && pnpm test",
"test": "vitest run",
"test:watch": "vitest",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "pnpm dlx @vscode/vsce package --allow-missing-repository"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/vscode": "^1.85.0",
"typescript": "^5.3.0",
"vitest": "^1.6.0"
}
}