-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
179 lines (179 loc) Β· 5.66 KB
/
Copy pathpackage.json
File metadata and controls
179 lines (179 loc) Β· 5.66 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "vscode-improved",
"displayName": "vscode-improved",
"description": "Utilities, functions and themes used to improve developer experience (dx) in VSCode.",
"version": "0.6.0",
"license": "BSD-3-Clause",
"scripts": {
"//": "///////////////////////////////////////////////////////////////////",
"//": "My scripts",
"//": "///////////////////////////////////////////////////////////////////",
"vsix-with-current-version-exists": "./bin/vsix-with-current-version-exists.sh",
"using-pnpm-warning": "echo 'Running with --no-dependencies for pnpm\n'...",
"vsce": "vsce package --no-dependencies",
"move-to-releases": "mv ./vscode-improved-*.vsix ./releases/",
"prod": "run-s -l vsix-with-current-version-exists using-pnpm-warning vsce move-to-releases",
"release": "pnpm run prod",
"create-release": "pnpm run prod",
"//": "///////////////////////////////////////////////////////////////////",
"//": "Original scripts from the extension template",
"//": "///////////////////////////////////////////////////////////////////",
"vscode:prepublish": "pnpm run package",
"compile": "pnpm run check-types && pnpm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "pnpm run check-types && pnpm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.92.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "3.2.1",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "9.1.0",
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"typescript": "^5.5.4"
},
"galleryBanner": {
"color": "#1f2335",
"theme": "dark"
},
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"Keymaps",
"Programming Languages",
"Snippets",
"Themes",
"Other"
],
"activationEvents": [
"onLanguage:markdown",
"onStartupFinished"
],
"main": "./dist/extension.js",
"icon": "./assets/icon.png",
"contributes": {
"commands": [
{
"command": "vscode-improved.showDateTimeNow",
"title": "Show current date and time"
},
{
"command": "vscode-improved.statusBarCountClicked",
"shortTitle": "Show additional file information",
"title": "Show additional file information when the status bar count is clicked"
}
],
"themes": [
{
"label": "Tokyo Night",
"uiTheme": "vs-dark",
"path": "./themes/tokyo-night/tokyo-night-color-theme.json"
},
{
"label": "Tokyo Night Storm",
"uiTheme": "vs-dark",
"path": "./themes/tokyo-night/tokyo-night-storm-color-theme.json"
},
{
"label": "Tokyo Night Light",
"uiTheme": "vs",
"path": "./themes/tokyo-night/tokyo-night-light-color-theme.json"
},
{
"label": "Andromeda",
"uiTheme": "vs-dark",
"path": "./themes/Andromeda/Andromeda-color-theme.json"
},
{
"label": "Andromeda Bordered",
"uiTheme": "vs-dark",
"path": "./themes/Andromeda/Andromeda-color-theme-bordered.json"
},
{
"label": "Andromeda Italic Bordered",
"uiTheme": "vs-dark",
"path": "./themes/Andromeda/Andromeda-italic-color-theme-bordered.json"
},
{
"label": "Andromeda Italic",
"uiTheme": "vs-dark",
"path": "./themes/Andromeda/Andromeda-italic-color-theme.json"
},
{
"label": "Andromeda Colorizer",
"uiTheme": "vs-dark",
"path": "./themes/Andromeda/Andromeda-colorizer.json"
},
{
"label": "One Dark Pro",
"uiTheme": "vs-dark",
"path": "./themes/OneDark-Pro/OneDark-Pro.json"
},
{
"label": "One Dark Pro Flat",
"uiTheme": "vs-dark",
"path": "./themes/OneDark-Pro/OneDark-Pro-flat.json"
},
{
"label": "One Dark Pro Darker",
"uiTheme": "vs-dark",
"path": "./themes/OneDark-Pro/OneDark-Pro-darker.json"
},
{
"label": "One Dark Pro Mix",
"uiTheme": "vs-dark",
"path": "./themes/OneDark-Pro/OneDark-Pro-mix.json"
},
{
"label": "Spiral Tattoo Ink Dark Dim",
"uiTheme": "vs-dark",
"path": "./themes/marcelocra/spiral-tattoo-ink-dark-dim-color-theme.json"
},
{
"label": "Night Owl",
"uiTheme": "vs-dark",
"path": "./themes/Night Owl/dark-color-theme.json"
},
{
"label": "Night Owl (No Italics)",
"uiTheme": "vs-dark",
"path": "./themes/Night Owl/dark-color-theme-no-italic.json"
},
{
"label": "Night Owl Light",
"uiTheme": "vs",
"path": "./themes/Night Owl/light-color-theme.json"
},
{
"label": "Night Owl Light (No Italics)",
"uiTheme": "vs",
"path": "./themes/Night Owl/light-color-theme-no-italic.json"
}
]
},
"publisher": "marcelocra",
"author": {
"name": "Marcelo Almeida",
"email": "2532492+marcelocra@users.noreply.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/marcelocra/vscode-improved"
}
}