-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.13 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
{
"name": "vscode-friendly-ui",
"displayName": "Friendly UI",
"description": "A friendly UI customization tool for VSCode that allows custom CSS and JavaScript injection",
"version": "0.0.3",
"publisher": "FreeIdom",
"author": {
"name": "FreeIdom"
},
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Themes",
"Other"
],
"keywords": [
"theme",
"css",
"javascript",
"customization",
"ui"
],
"repository": {
"type": "git",
"url": "https://github.com/FreeIdom/vscode-friendly-ui"
},
"bugs": {
"url": "https://github.com/FreeIdom/vscode-friendly-ui/issues"
},
"homepage": "https://github.com/FreeIdom/vscode-friendly-ui#readme",
"preview": true,
"icon": "images/logo.png",
"galleryBanner": {
"color": "#EEEEEE",
"theme": "light"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./src/main",
"contributes": {
"commands": [
{
"command": "friendly-ui.enable",
"title": "Enable Custom CSS and JS",
"category": "Friendly UI"
},
{
"command": "friendly-ui.disable",
"title": "Disable Custom CSS and JS",
"category": "Friendly UI"
},
{
"command": "friendly-ui.reload",
"title": "Reload styles",
"category": "Friendly UI"
}
],
"configuration": {
"title": "Friendly UI",
"properties": {
"friendly-ui.customCssPath": {
"type": "string",
"default": "",
"description": "Absolute path to your custom CSS file. Use ~ for home directory.",
"scope": "application"
},
"friendly-ui.customJsPath": {
"type": "string",
"default": "",
"description": "Absolute path to your custom JavaScript file. Use ~ for home directory.",
"scope": "application"
},
"friendly-ui.disableWorkbenchJs": {
"type": "boolean",
"default": false,
"description": "Disable the default workbench.js",
"scope": "application"
}
}
}
},
"devDependencies": {
"@types/vscode": "^1.93.0",
"@types/node": "^20.0.0"
},
"dependencies": {},
"extensionKind": [
"ui"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "echo 'No compilation needed'",
"lint": "eslint ."
},
"license": "MIT"
}