-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.15 KB
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
{
"name": "ui-strings",
"version": "0.1.5",
"description": "Extract user-reachable UI strings from React (TS/TSX) codebases and generate JSON / Markdown / HTML reports",
"type": "module",
"bin": {
"ui-strings": "dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"keywords": [
"react",
"jsx",
"i18n",
"static-analysis",
"ts-morph",
"ui-strings",
"copy-audit",
"cli"
],
"scripts": {
"build": "bun build src/cli.ts --outdir dist --target node --packages external",
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "bun run build && bun test"
},
"license": "MIT",
"author": "junseinagao",
"repository": {
"type": "git",
"url": "git+https://github.com/junseinagao/ui-strings-scanner.git"
},
"homepage": "https://github.com/junseinagao/ui-strings-scanner#readme",
"bugs": {
"url": "https://github.com/junseinagao/ui-strings-scanner/issues"
},
"dependencies": {
"commander": "^15.0.0",
"picocolors": "^1.1.1",
"ts-morph": "^28.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"typescript": "^6.0.3"
}
}