|
1 | 1 | { |
2 | | - "name": "tlog-vscode", |
3 | | - "displayName": "tlog", |
| 2 | + "name": "tlog-vscode-src-code", |
4 | 3 | "description": "Transient Log - Quick console.log with [TLOG] prefix for easy identification and removal", |
5 | | - "version": "0.2.0", |
6 | | - "publisher": "KubrickCode", |
7 | | - "license": "MIT", |
8 | | - "repository": { |
9 | | - "type": "git", |
10 | | - "url": "https://github.com/KubrickCode/tlog.git" |
11 | | - }, |
12 | | - "engines": { |
13 | | - "vscode": "^1.90.0" |
14 | | - }, |
15 | | - "categories": [ |
16 | | - "Snippets", |
17 | | - "Other" |
18 | | - ], |
19 | | - "keywords": [ |
20 | | - "console.log", |
21 | | - "logging", |
22 | | - "debug", |
23 | | - "tlog", |
24 | | - "temporary" |
25 | | - ], |
26 | | - "activationEvents": [], |
27 | | - "main": "./out/src/main.js", |
28 | | - "contributes": { |
29 | | - "commands": [ |
30 | | - { |
31 | | - "command": "tlog.insertTlog", |
32 | | - "title": "Insert TLOG", |
33 | | - "category": "tlog" |
34 | | - }, |
35 | | - { |
36 | | - "command": "tlog.removeAllTlogs", |
37 | | - "title": "Remove All TLOGs", |
38 | | - "category": "tlog" |
39 | | - }, |
40 | | - { |
41 | | - "command": "tlog.refreshTlogTree", |
42 | | - "title": "Refresh", |
43 | | - "icon": "$(refresh)" |
44 | | - }, |
45 | | - { |
46 | | - "command": "tlog.openTlogLocation", |
47 | | - "title": "Open Location" |
48 | | - }, |
49 | | - { |
50 | | - "command": "tlog.removeFilesTlogs", |
51 | | - "title": "Remove TLOGs from File", |
52 | | - "icon": "$(trash)" |
53 | | - }, |
54 | | - { |
55 | | - "command": "tlog.removeDirectoryTlogs", |
56 | | - "title": "Remove TLOGs from Directory", |
57 | | - "icon": "$(trash)" |
58 | | - }, |
59 | | - { |
60 | | - "command": "tlog.removeSingleTlog", |
61 | | - "title": "Remove This TLOG", |
62 | | - "icon": "$(close)" |
63 | | - } |
64 | | - ], |
65 | | - "viewsContainers": { |
66 | | - "activitybar": [ |
67 | | - { |
68 | | - "id": "tlogContainer", |
69 | | - "title": "TLOG", |
70 | | - "icon": "$(debug-console)" |
71 | | - } |
72 | | - ] |
73 | | - }, |
74 | | - "views": { |
75 | | - "tlogContainer": [ |
76 | | - { |
77 | | - "id": "tlogExplorer", |
78 | | - "name": "TLOG Explorer", |
79 | | - "when": "workspaceFolderCount > 0" |
80 | | - } |
81 | | - ] |
82 | | - }, |
83 | | - "menus": { |
84 | | - "view/title": [ |
85 | | - { |
86 | | - "command": "tlog.refreshTlogTree", |
87 | | - "when": "view == tlogExplorer", |
88 | | - "group": "navigation" |
89 | | - } |
90 | | - ], |
91 | | - "view/item/context": [ |
92 | | - { |
93 | | - "command": "tlog.removeFilesTlogs", |
94 | | - "when": "view == tlogExplorer && viewItem == tlogFile", |
95 | | - "group": "inline" |
96 | | - }, |
97 | | - { |
98 | | - "command": "tlog.removeDirectoryTlogs", |
99 | | - "when": "view == tlogExplorer && viewItem == tlogDirectory", |
100 | | - "group": "inline" |
101 | | - }, |
102 | | - { |
103 | | - "command": "tlog.removeSingleTlog", |
104 | | - "when": "view == tlogExplorer && viewItem == tlogItem", |
105 | | - "group": "inline" |
106 | | - } |
107 | | - ] |
108 | | - }, |
109 | | - "keybindings": [ |
110 | | - { |
111 | | - "command": "tlog.insertTlog", |
112 | | - "key": "ctrl+shift+t", |
113 | | - "mac": "cmd+shift+t", |
114 | | - "when": "editorTextFocus" |
115 | | - }, |
116 | | - { |
117 | | - "command": "tlog.removeAllTlogs", |
118 | | - "key": "ctrl+shift+r", |
119 | | - "mac": "cmd+shift+r", |
120 | | - "when": "editorTextFocus" |
121 | | - } |
122 | | - ] |
123 | | - }, |
| 4 | + "version": "0.0.1", |
124 | 5 | "scripts": { |
125 | 6 | "compile": "tsc -p ./", |
126 | | - "package": "vsce package --out versions/", |
127 | | - "install-package": "code --install-extension versions/tlog-vscode-$npm_package_version.vsix", |
128 | 7 | "test": "jest", |
129 | | - "test:watch": "jest --watch", |
130 | | - "vsce-publish": "vsce publish", |
131 | | - "ovsx-publish": "ovsx publish" |
| 8 | + "test:watch": "jest --watch" |
132 | 9 | }, |
133 | 10 | "devDependencies": { |
134 | 11 | "@types/jest": "^29.0.0", |
135 | 12 | "@types/node": "24.3.0", |
136 | 13 | "@types/vscode": "^1.90.0", |
137 | 14 | "jest": "^29.0.0", |
138 | 15 | "ts-jest": "^29.0.0", |
139 | | - "typescript": "5.9.2", |
140 | | - "@vscode/vsce": "3.0.0" |
141 | | - }, |
142 | | - "dependencies": { |
143 | | - "@vscode/ripgrep": "1.15.9" |
| 16 | + "typescript": "5.9.2" |
144 | 17 | } |
145 | 18 | } |
0 commit comments