-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.95 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.95 KB
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
{
"name": "vscode-enfocado",
"displayName": "Enfocado",
"version": "2.1.1",
"publisher": "wuelnerdotexe",
"description": "How themes should be.",
"author": {
"name": "Wuelner Martínez",
"email": "wuelner.martinez@outlook.com",
"url": "https://wuelnerdotexe.github.io"
},
"sponsor": {
"url": "https://paypal.me/wuelnerdotexe"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Enfocado Light Nature",
"uiTheme": "vs",
"path": "./src/themes/enfocado-light-nature.json"
},
{
"label": "Enfocado Light Neon",
"uiTheme": "vs",
"path": "./src/themes/enfocado-light-neon.json"
},
{
"label": "Enfocado Dark Nature",
"uiTheme": "vs-dark",
"path": "./src/themes/enfocado-dark-nature.json"
},
{
"label": "Enfocado Dark Neon",
"uiTheme": "vs-dark",
"path": "./src/themes/enfocado-dark-neon.json"
}
]
},
"icon": "src/assets/icon.png",
"galleryBanner": {
"color": "#181818",
"theme": "dark"
},
"engines": {
"vscode": "^1.61.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wuelnerdotexe/vscode-enfocado/issues",
"email": "wuelner.martinez@outlook.com"
},
"repository": {
"type": "git",
"url": "https://github.com/wuelnerdotexe/vscode-enfocado.git"
},
"homepage": "https://wuelnerdotexe.github.io/enfocado",
"keywords": [
"enfocado",
"vim-enfocado",
"vscode-enfocado"
],
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"vsce": "^2.10.0"
},
"scripts": {
"build": "mkdir -p ./dist/ && vsce package -o ./dist/vscode-enfocado.vsix",
"deploy": "vsce publish",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}