-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.51 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
{
"name": "vscode-css-g7formatter",
"displayName": "CSS G7 Formatter",
"description": "Extension para formatear archivos CSS segun las reglas de formato G7",
"version": "1.0",
"publisher": "GrupoSie7e",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Formatters"
],
"repository": {
"type": "git",
"url": "https://github.com/marias400/vscode-css-g7formatter"
},
"homepage": "https://github.com/marias400/vscode-css-g7formatter",
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "extension.formatG7CSS",
"title": "Formatear CSS usando G7"
}
],
"languages": [
{
"id": "css",
"extensions": [".css"]
}
],
"configuration": {
"title": "CSS G7 Formatter",
"properties": {
"cssG7Formatter.propertyOrder": {
"type": "array",
"default": [
"width", "height", "max-width", "max-height", "min-width", "min-height",
"background-color", "background-image", "background-repeat", "background-position", "background-size",
"color", "opacity",
"padding", "margin",
"font-family", "font-size", "font-weight", "font-style", "font-variant", "line-height", "text-align", "text-transform", "text-decoration",
"border", "border-width", "border-style", "border-color", "border-top", "border-right", "border-bottom", "border-left", "border-radius",
"box-shadow", "text-shadow",
"display", "visibility", "overflow", "position", "top", "right", "bottom", "left", "z-index",
"flex-direction", "flex-wrap", "flex-flow", "justify-content", "align-items", "align-content", "order", "flex-grow", "flex-shrink", "flex-basis",
"transition", "animation",
"cursor", "user-select", "pointer-events", "white-space", "word-wrap", "word-break", "text-overflow", "resize", "outline", "appearance"
],
"items": {
"type": "string"
},
"description": "Define el orden de las propiedades CSS"
}
}
}
},
"activationEvents": [
"onLanguage:css"
],
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch",
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^20.14.10",
"typescript": "^5.5.3",
"vscode": "^1.1.34",
"vscode-languageclient": "^8.0.0"
},
"license": "MIT"
}