-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
119 lines (119 loc) · 3.6 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
{
"name": "vscode-dynamic-theme",
"displayName": "Dynamic Theme",
"description": "Generate a dynamic theme based on the new material design color space for the current theme.",
"icon": "images/icon.png",
"publisher": "rodydavis",
"version": "1.1.1",
"repository": {
"type": "git",
"url": "https://github.com/rodydavis/vscode-dynamic-theme"
},
"bugs": {
"url": "https://github.com/rodydavis/vscode-dynamic-theme/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/rodydavis/vscode-dynamic-theme/blob/main/README.md",
"engines": {
"vscode": "^1.63.0"
},
"author": {
"name": "Rody Davis"
},
"preview": true,
"categories": [
"Themes",
"Snippets",
"Other"
],
"license": "SEE LICENSE",
"activationEvents": [
"onCommand:dynamic-theme.theme-from-hex",
"onCommand:dynamic-theme.theme-from-color",
"onCommand:dynamic-theme.theme-from-random"
],
"browser": "./dist/web/extension.js",
"contributes": {
"themes": [
{
"label": "Material Theme (Light - Normal Contrast)",
"uiTheme": "vs",
"path": "./themes/material-theme-light-default-color-theme.json"
},
{
"label": "Material Theme (Dark - Normal Contrast)",
"uiTheme": "vs-dark",
"path": "./themes/material-theme-dark-default-color-theme.json"
},
{
"label": "Material Theme (Light - Low Contrast)",
"uiTheme": "vs",
"path": "./themes/material-theme-light-low-color-theme.json"
},
{
"label": "Material Theme (Dark - Low Contrast)",
"uiTheme": "vs-dark",
"path": "./themes/material-theme-dark-low-color-theme.json"
},
{
"label": "Material Theme (Light - High Contrast)",
"uiTheme": "hc-light",
"path": "./themes/material-theme-light-high-color-theme.json"
},
{
"label": "Material Theme (Dark - High Contrast)",
"uiTheme": "hc-black",
"path": "./themes/material-theme-dark-high-color-theme.json"
}
],
"commands": [
{
"command": "dynamic-theme.theme-from-color",
"title": "Generate Theme from CSS Color"
},
{
"command": "dynamic-theme.theme-from-hex",
"title": "Generate Theme from HEX Color"
},
{
"command": "dynamic-theme.theme-from-random",
"title": "Generate Theme from Random Color"
}
]
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "npm run compile-web",
"vscode:prepublish": "npm run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. .",
"package": "vsce package"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/mustache": "^4.2.2",
"@types/vscode": "^1.63.0",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vscode/test-web": "^0.0.15",
"assert": "^2.0.0",
"eslint": "^8.6.0",
"mocha": "^9.1.3",
"process": "^0.11.10",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"vsce": "^2.6.3",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@material/material-color-utilities": "^0.2.5",
"buffer": "^6.0.3",
"css-color-names": "^1.0.1",
"mustache": "^4.2.0"
}
}