-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.59 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "resxlocalizer",
"displayName": "ResXLocalizer",
"description": "Visualize .resx localization resources as a key/language table.",
"version": "1.3.6",
"publisher": "howbizarre",
"license": "CC-BY-NC-SA-4.0",
"icon": "media/marketplace-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/howbizarre/ResXLocalizer.git"
},
"bugs": {
"url": "https://github.com/howbizarre/ResXLocalizer/issues"
},
"homepage": "https://github.com/howbizarre/ResXLocalizer#readme",
"keywords": [
"resx",
"localization",
"l10n",
"i18n",
"translation",
"resource",
".net",
"csharp"
],
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "resxlocalizer.openTable",
"title": "ResXLocalizer: Open Resx Table",
"icon": "$(table)"
},
{
"command": "resxlocalizer.refreshTable",
"title": "ResXLocalizer: Refresh Table",
"icon": "$(refresh)"
}
],
"menus": {
"explorer/context": [
{
"command": "resxlocalizer.openTable",
"when": "resourceExtname == .resx",
"group": "resxlocalizer"
}
],
"view/title": [
{
"command": "resxlocalizer.refreshTable",
"when": "view == resxlocalizer.fileListView",
"group": "navigation"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "resxlocalizer",
"title": "ResXLocalizer",
"icon": "media/icon.svg"
}
]
},
"views": {
"resxlocalizer": [
{
"id": "resxlocalizer.fileListView",
"name": "Resx Files",
"type": "webview"
}
]
}
},
"scripts": {
"compile": "node esbuild.js",
"watch": "node esbuild.js --watch",
"package": "node esbuild.js --production",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"vscode:prepublish": "npm run check-types && npm run lint && npm run package",
"vsix": "vsce package",
"publish": "vsce publish"
},
"dependencies": {
"fast-xml-parser": "^5.10.1"
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@babel/eslint-parser": "^8.0.1",
"@babel/preset-typescript": "^8.0.1",
"@types/node": "^26.2.0",
"@types/vscode": "^1.90.0",
"@vscode/vsce": "^3.1.0",
"esbuild": "^0.28.2",
"eslint": "^10.8.1",
"typescript": "^7.0.2"
},
"allowScripts": {
"esbuild@0.28.2": true
}
}