-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.97 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
{
"name": "drevolootion",
"displayName": "i18n-quickview",
"description": "i18n-quickview enhances i18n workflows with features like hover translations, CTRL + click navigation to localization files, and translate key autocomplete",
"publisher": "Lootjs",
"version": "0.0.16",
"icon": "icon.png",
"engines": {
"vscode": "^1.72.0"
},
"repository": {
"url": "https://github.com/Lootjs/DRevoLootion"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"capabilities": {
"hoverProvider": "true",
"definitionProvider" : "true"
},
"configuration": [
{
"type": "object",
"title": "Localization settings",
"properties": {
"drevolootion.localesDirectory": {
"type": "string",
"default": "src/assets/locales",
"markdownDescription": "Specifies the folder path containing locales files."
},
"drevolootion.scanForRawString": {
"type": "boolean",
"default": false,
"markdownDescription": "Scan opened file for raw untranslated strings."
},
"drevolootion.defaultLocale": {
"type": "string",
"default": "en",
"markdownDescription": "Default locale. Using in autocomplete"
}
}
}
],
"views": {
"explorer": [
{
"id": "untranslatedView",
"name": "Untranslated strings",
"contextualTitle": "Untranslated strings"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.72.0",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "16.x",
"eslint": "^8.24.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.8.4",
"@vscode/test-electron": "^2.1.5"
}
}