-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.19 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
82
83
84
85
86
87
{
"name": "arb-manager",
"displayName": "ARB Manager / Localizations",
"description": "Extract strings into ARB files and view ARB files in table.",
"version": "1.0.5",
"publisher": "utpalbarman",
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/utpal-barman/arb-tool-vscode-plugin"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.extractToArb",
"title": "Extract to ARB File"
},
{
"command": "extension.extractToArbFromContextMenu",
"title": "Extract String to ARB File",
"category": "Refactor"
},
{
"command": "extension.clearArbFolderPath",
"title": "ARB Manager: Clear ARB Folder Path"
},
{
"command": "extension.visualizeArbFiles",
"title": "ARB Manager: View ARB Files"
},
{
"command": "extension.setupFlutterLocalization",
"title": "ARB Manager: Setup flutter_localizations for Flutter Project"
}
],
"menus": {
"editor/context": [
{
"command": "extension.extractToArbFromContextMenu",
"group": "navigation@10"
}
],
"explorer/context": [
{
"command": "extension.visualizeArbFiles",
"when": "resourceLangId == jsonc || resourceExtname == .arb",
"group": "navigation"
}
]
},
"configuration": {
"type": "object",
"properties": {
"extractStringsToArb.arbFolderPath": {
"type": "string",
"default": "",
"description": "The folder path where ARB files are stored."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^18.11.18",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.70.0",
"sinon": "^19.0.2",
"typescript": "^4.9.4",
"vscode-test": "^1.6.1"
},
"dependencies": {
"@vscode/test-cli": "^0.0.10",
"csv-parser": "^3.0.0",
"csv-stringify": "^6.5.2"
}
}