-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 3.33 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
88
89
90
91
92
93
94
95
96
97
{
"name": "translation-keys-lookup",
"displayName": "Translation Keys Lookup",
"description": "See the texts associated to the translation/i18n keys in your files, next to your keys, without switching context",
"version": "0.9.3",
"publisher": "matthizou",
"repository": {
"type": "git",
"url": "https://github.com/matthizou/vscode-translation-keys-lookup"
},
"homepage": "https://github.com/matthizou/vscode-translation-keys-lookup",
"bugs": {
"url": "https://github.com/matthizou/vscode-translation-keys-lookup/issues"
},
"license": "SEE LICENSE IN LICENSE",
"engines": {
"vscode": "^1.52.0"
},
"icon": "resources/images/logo.png",
"keywords": [
"translations",
"translations keys",
"i18n",
"i18n keys",
"internationalization",
"keys"
],
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:javascriptreact",
"onLanguage:typescriptreact"
],
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "yarn compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall_TEMP": "node ./node_modules/vscode/bin/install",
"test": "jest",
"package": "vsce package"
},
"dependencies": {
"file-data-cache": "2.1.1",
"find-files-recur": "^1.1.0",
"ts-jest": "^29.0.5"
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^29.4.0",
"@types/node": "^12.0.0",
"@types/vscode": "^1.52.0",
"jest": "^29.5.0",
"typescript": "^4.1.3"
},
"contributes": {
"configuration": {
"title": "Translation Keys Lookup",
"properties": {
"translationKeysLookup.translationsFolders": {
"type": "string",
"default": "src;packages;resources;translations",
"markdownDescription": "Path of the root folders to recursively search for translation files. \nThey are relative to the workspace root. \nTry to limit the number of files crawled (MAX: 5000) by providing specific paths."
},
"translationKeysLookup.ignoredFolders": {
"type": "string",
"default": "node_modules,public,dist,.git,__tests__,bower_components",
"markdownDescription": "Folders ignored when recursively looking for translation files"
},
"translationKeysLookup.translationsFilenames": {
"type": "string",
"default": "en.json;en.yml",
"markdownDescription": "Filename(s) of the file(s) containing translations, separated by semicolumns. \nRegular expressions are not supported yet"
},
"translationKeysLookup.extensions": {
"type": "string",
"default": "js;jsx;ts;tsx;rb;py;java;",
"markdownDescription": "Extensions of the files consumming i18ns keys (i.e: \"js;ts\")"
},
"translationKeysLookup.color": {
"type": "string",
"default": "green",
"markdownDescription": "Color of the translation text (hex value or html color name) \n💡 Write 'random' for a bit of crazyness"
},
"translationKeysLookup.verbose": {
"type": "boolean",
"default": "false",
"markdownDescription": "Whether output logs are generated or not, in the Debug Console."
}
}
}
}
}