-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.81 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
{
"name": "html-entities-converter",
"displayName": "HTML Entity Converter",
"description": "Replace the HTML entity characters in the selected section",
"preview": true,
"version": "0.0.13",
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"Other"
],
"devDependencies": {
"@types/node": "^22.7.4",
"@types/vscode": "^1.92.0",
"@ziloen/eslint-config": "^0.1.48",
"entities": "5.0.0",
"eslint": "^9.11.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"publisher": "ziloen",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ziloen/html-entities-converter"
},
"activationEvents": [],
"main": "./dist/index",
"contributes": {
"commands": [
{
"command": "converter.encode",
"title": "Encode to HTML entities"
},
{
"command": "converter.decode",
"title": "Decode HTML entities"
}
],
"submenus": [
{
"id": "converter.opration",
"label": "HTML Entity Converter"
}
],
"menus": {
"editor/context": [
{
"submenu": "converter.opration",
"group": "z_commands"
}
],
"converter.opration": [
{
"command": "converter.encode",
"group": "MyGroup"
},
{
"command": "converter.decode",
"group": "MyGroup"
}
]
}
},
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "tsup",
"test": "vitest",
"lint": "eslint . --ext .ts,.tsx",
"dev": "tsup --watch src",
"package": "pnpm vsce package --no-dependencies",
"publish": "pnpm vsce publish --no-dependencies"
},
"icon": "assets/logo.png",
"dependencies": {
"@vscode/vsce": "3.1.0"
}
}