-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.06 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.06 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
82
83
84
85
86
87
{
"name": "desgruda",
"displayName": "Code Breathe: Sibling Separator",
"description": "Improve code readability by automatically separating sibling JSX/TSX elements with a blank line.",
"icon": "images/icon.png",
"version": "1.1.3",
"publisher": "IsaacMuniz",
"repository": "https://github.com/codigoisaac/Sibling-Separator",
"pricing": "Free",
"license": "MIT",
"galleryBanner": {
"color": "#cbad9a",
"theme": "dark"
},
"keywords": [
"jsx",
"tsx",
"formatter",
"format",
"spacing",
"react",
"sibling",
"separator",
"readability",
"readable",
"blank lines",
"whitespace",
"clean code",
"code style",
"beautify",
"typescript",
"javascript",
"nextjs",
"elements",
"organize",
"html",
"spacer"
],
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Formatters"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "code-breathe.separate-siblings",
"title": "Code Breathe: Separate Sibling Elements"
}
],
"keybindings": [
{
"command": "code-breathe.separate-siblings",
"key": "ctrl+k space",
"mac": "cmd+k space",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile -- --minify",
"compile": "esbuild src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"watch": "npm run compile -- --watch",
"package": "vsce package",
"publish": "vsce publish",
"lint": "eslint src"
},
"devDependencies": {
"@types/babel__traverse": "^7.28.0",
"@types/node": "22.x",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.27.4",
"eslint": "^9.36.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@babel/parser": "^7.28.5",
"@babel/traverse": "^7.28.5",
"magic-string": "^0.30.21"
}
}