-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "untangled-html",
"displayName": "Untangled HTML",
"description": "Declutter your HTML, Vue, and JSX. Toggle the visibility of angle brackets for a cleaner, Zen-like coding experience.",
"version": "0.0.3",
"publisher": "RahulDhole",
"private": false,
"scripts": {
"dev": "pnpm install && echo 'Development environment ready. Press F5 in VS Code to start debugging.'",
"lint": "eslint .",
"package": "pnpx vsce package",
"publish": "pnpx vsce publish",
"publish:ovsx": "pnpx ovsx publish"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rahuldhole/untangled-html"
},
"icon": "logo.png",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages",
"Formatters",
"Other"
],
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "node",
"target": "ES6",
"esModuleInterop": true,
"skipLibCheck": true
},
"activationEvents": [],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "extension.toggleBrackets",
"title": "Untangled HTML: Toggle Angle Brackets Visibility"
}
]
}
}