-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1005 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1005 Bytes
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
{
"name": "mistura-theme",
"displayName": "Mistura Theme",
"publisher": "TheMasterBuilder",
"author": {
"name": "Jaiden"
},
"description": "A tasteful, low contrast remix of the Roblox Studio color palette.",
"icon": "src/images/mistura.png",
"version": "2.0.2",
"license": "LICENSE.txt",
"repository": {
"type": "git",
"url": "https://github.com/TheMasterBuildr/mistura-vscode-theme"
},
"homepage": "https://github.com/TheMasterBuildr/mistura-vscode-theme/blob/master/README.md",
"engines": {
"vscode": "^1.104.0"
},
"categories": [
"Themes"
],
"type": "module",
"scripts": {
"build": "node build.js"
},
"contributes": {
"themes": [
{
"label": "Mistura",
"uiTheme": "vs-dark",
"path": "./themes/Mistura-color-theme.json"
}
]
},
"extensionDependencies": [
"littensy.charmed-icons",
"jep-a.lua-plus",
"johnnymorganz.luau-lsp"
],
"devDependencies": {
"json5": "^2.2.3"
}
}