-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.97 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
{
"name": "material-code",
"displayName": "Material Code",
"description": "Dynamic theme for Visual Studio Code.",
"version": "3.0.2",
"publisher": "rakib13332",
"author": "https://github.com/rakibdev",
"icon": "icon.png",
"galleryBanner.color": "#ffffff",
"repository": {
"type": "git",
"url": "https://github.com/rakibdev/material-code"
},
"bugs": {
"url": "https://github.com/rakibdev/material-code/issues"
},
"categories": [
"Themes"
],
"keywords": [
"material",
"theme"
],
"main": "./build/extension.js",
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"themes": [
{
"label": "Material Code",
"uiTheme": "vs-dark",
"path": "./build/dark.json",
"_watch": true
},
{
"label": "Material Code Light",
"uiTheme": "vs",
"path": "./build/light.json",
"_watch": true
}
],
"configuration": {
"title": "Material Code",
"properties": {
"material-code.primaryColor": {
"type": "string",
"default": "#00adff",
"pattern": "^#([A-Fa-f0-9]{6})$",
"patternErrorMessage": "Invalid color."
},
"material-code.inject": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"${extensionDir}/build/inject.css",
"${extensionDir}/build/inject.js"
],
"markdownDescription": "Select **Command Palette > Material Code: Apply styles** after editing.\n\nExamples: \n* `~/Downloads/custom.css`\n* `C:/Users/rakib/Downloads/custom.css`\n* `https://raw.githubusercontent.com/.../custom.css`\n* `body { ... }`\n* `<style>...</style>`\n* `<script>...</script>`\n* `<div>...</div><style>...</style>`"
},
"material-code.syntaxTheme": {
"type": "string",
"examples": [
"Dark Modern"
],
"markdownDescription": "Select **Command Palette > Preferences: Color Theme** to view available themes."
}
}
},
"commands": [
{
"command": "material-code.applyStyles",
"title": "Material Code: Apply styles"
},
{
"command": "material-code.removeStyles",
"title": "Material Code: Remove styles"
}
]
},
"scripts": {
"dev": "export DEV=true && bun ./scripts/dev.ts",
"build": "bun ./scripts/dev.ts && yes | vsce package --no-dependencies",
"build:npm": "bun ./scripts/npm/build.ts",
"release": "bun ./scripts/release.ts && xdg-open https://marketplace.visualstudio.com/manage"
},
"dependencies": {
"@vscode/sudo-prompt": "^9.3.1",
"material-colors": "https://github.com/rakibdev/material-colors/releases/download/1.0.0/npm.tgz"
},
"devDependencies": {
"@types/bun": "^1.1.13",
"@types/vscode": "1.75.0",
"@vscode/vsce": "^3.2.1",
"esbuild": "^0.24.0",
"typescript": "^5.6.3"
}
}