forked from TheOld/vscode-fluent-ui
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
123 lines (123 loc) · 4.17 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
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
{
"name": "vscode-fluent-ui",
"displayName": "Fluent UI for VSCode",
"description": "Fluent UI for VSCode based on concept designs from u/zeealeidahmad.",
"author": "Night Star",
"contributors": [
"Leandro Rodrigues",
"NightSky Studio"
],
"publisher": "NightSky-Studio",
"version": "4.5.0",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/Night-Star04/vscode-fluent-ui"
},
"engines": {
"vscode": "^1.93.0"
},
"keywords": [
"fluent",
"windows 11",
"w11"
],
"categories": [
"Themes"
],
"activationEvents": [],
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"main": "./out/main.js",
"contributes": {
"commands": [
{
"command": "fluentui.enableEffects",
"title": "Fluent UI: Enable"
},
{
"command": "fluentui.reloadEffects",
"title": "Fluent UI: Reload"
},
{
"command": "fluentui.disableEffects",
"title": "Fluent UI: Disable"
}
],
"configuration": {
"title": "Fluent UI",
"type": "object",
"properties": {
"fluentui.compact": {
"type": "boolean",
"default": false,
"description": "Applies slight less padding around some of the elements. The difference is subtle but can help those with limited space.",
"scope": "application"
},
"fluentui.enableWallpaper": {
"type": "boolean",
"default": false,
"description": "Enable background image",
"scope": "application"
},
"fluentui.wallpaperPath": {
"type": "string",
"default": "C:\\Windows\\Web\\Wallpaper\\Windows\\img0.jpg",
"description": "Path to image. By default, it will use the default Windows 11 wallpaper for the Windows light theme.",
"scope": "application"
},
"fluentui.accent": {
"type": "string",
"default": "#005fb8",
"description": "Accent color (default #005fb8). Only HEX values are supported.",
"scope": "application"
},
"fluentui.darkBackground": {
"type": "string",
"default": "#202020",
"description": "Background color for dark mode (default #202020). Only HEX values are supported.",
"scope": "application"
},
"fluentui.lightBackground": {
"type": "string",
"default": "#ffffff",
"description": "Background color for light mode (default #ffffff). Only HEX values are supported.",
"scope": "application"
}
}
}
},
"scripts": {
"check-types": "tsc -p ./ --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:tsc": "tsc -watch -p ./",
"watch:esbuild": "node esbuild.mjs --watch",
"compile": "tsc -p ./ --noEmit && node esbuild.mjs",
"compile:tsc": "tsc -p ./",
"lint": "eslint src",
"vscode:prepublish": "node esbuild.mjs --production"
},
"dependencies": {
"file-url": "^4.0.0",
"node-fetch": "^3.3.1",
"sharp": "^0.32.1"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.9",
"@types/node": "20.x",
"@types/node-fetch": "^2.6.3",
"@types/vscode": "^1.93.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1",
"esbuild": "^0.17.19",
"eslint": "^9.13.0",
"glob": "^10.2.3",
"mocha": "^11.0.1",
"typescript": "^5.6.3"
}
}