-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.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
{
"name": "i18n-magic",
"version": "0.7.1",
"license": "MIT",
"description": "CLI to help you manage your locales JSON with translations, replacements, etc. with OpenAI",
"repository": {
"type": "git",
"url": "https://github.com/BjoernRave/i18n-magic.git"
},
"author": "BjoernRave",
"main": "dist/index.js",
"module": "dist/i18n-magic.esm.js",
"typings": "dist/index.d.ts",
"bin": "dist/index.js",
"files": ["dist", "src"],
"scripts": {
"analyze": "size-limit --why",
"build": "dts build && echo '#!/usr/bin/env node' | cat - dist/index.js > temp && mv temp dist/index.js",
"lint": "dts lint",
"prepare": "dts build && echo '#!/usr/bin/env node' | cat - dist/index.js > temp && mv temp dist/index.js",
"size": "size-limit",
"start": "dts watch",
"test": "dts test"
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"fast-glob": "^3.3.2",
"i18next-scanner": "^4.5.0",
"openai": "^4.61.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@tsconfig/recommended": "^1.0.7",
"@types/node": "^20.12.12",
"@types/prompts": "^2.4.9",
"dts-cli": "^2.0.5",
"tslib": "^2.6.2",
"typescript": "^5.6.2"
}
}