-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 927 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 927 Bytes
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
{
"name": "i18n-scan",
"version": "1.3.0",
"description": "Extract raw text from JSX for i18n",
"main": "dist/index.js",
"type": "module",
"bin": {
"i18n-scan": "dist/index.js"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "npm run build && node dist/index.js example/src"
},
"dependencies": {
"commander": "^11.1.0",
"@babel/parser": "^7.23.0",
"@babel/traverse": "^7.23.0",
"@babel/types": "^7.23.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/babel__traverse": "^7.20.0",
"typescript": "^5.0.0",
"tsx": "^4.0.0"
},
"keywords": [
"i18n",
"jsx",
"react",
"typescript",
"cli",
"babel"
],
"author": "hexxt",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}