-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
100 lines (100 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
99
100
{
"name": "vslook",
"displayName": "VSLook",
"icon": "media/logo.png",
"main": "./src/index.js",
"version": "0.3.2",
"preview": true,
"license": "MIT",
"publisher": "sudoaugustin",
"description": "Easiest way to create vscode theme.",
"author": {
"name": "Augutstin Joseph",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/sudoaugustin/vslook",
"type": "git"
},
"extensionKind": [
"ui",
"workspace"
],
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Themes",
"Visualization",
"Other"
],
"activationEvents": [
"*"
],
"keywords": [
"theme",
"design_tool"
],
"contributes": {
"themes": [
{
"label": "VSLook",
"uiTheme": "vs-dark",
"path": "./themes/index.json"
}
],
"commands": [
{
"title": "Edit",
"command": "vslook.edit",
"category": "VSLook"
},
{
"title": "Clone",
"command": "vslook.clone",
"category": "VSLook"
},
{
"title": "Export",
"command": "vslook.export",
"category": "VSLook"
}
],
"configuration": {
"title": "VSLook",
"properties": {
"vslook.palette.type": {
"type": "string",
"enum": [
"None",
"Tailwind",
"Material"
],
"default": "Tailwind",
"description": "The color palette to merge with your color variables."
},
"vslook.palette.colors": {
"type": "object",
"default": {},
"description": "Add your custom color variable here."
}
}
}
},
"scripts": {
"lint": "eslint .",
"build-app": "npm --prefix app run build",
"watch-app": "npm --prefix app run watch",
"postinstall": "npm --prefix app install",
"local-release": "vsce package && code --install-extension vslook-*.vsix"
},
"devDependencies": {
"@types/node": "14.x",
"@types/vscode": "^1.63.0",
"eslint": "^8.13.0",
"typescript": "^4.4.4"
},
"dependencies": {
"json5": "^2.2.1"
}
}