-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (37 loc) · 938 Bytes
/
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
{
"name": "extract-untranslated",
"version": "0.0.1",
"description": "A tool to extract untranslated texts from React code for internationalization (i18n)",
"main": "index.js",
"type": "module",
"scripts": {
"test": "i18n-extract untsl -f test/src -g tsl -g test"
},
"bin": {
"i18n-extract": "./bin/i18n-extractor.js"
},
"keywords": [
"i18n",
"internationalization",
"localization",
"react",
"babel",
"i18next",
"extract"
],
"license": "MIT",
"devDependencies": {
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "3.3.2",
"semistandard": "^17.0.0"
},
"dependencies": {
"cac": "^6.7.14",
"@babel/parser": "^7.24.4",
"@babel/traverse": "^7.24.1"
},
"repository": "https://github.com/williamChen26/i18next-extract-untranslated.git",
"author": "chenweimin <[email protected]>"
}