-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"type": "module",
"name": "@drone1/alt",
"version": "1.1.4",
"description": "An AI-powered localization tool",
"main": "src/index.mjs",
"bin": {
"alt": "./alt.mjs"
},
"scripts": {
"test": "ALT_TEST=1 mocha",
"test:targeted": "ALT_TEST=1 mocha --grep 'multiple target'",
"test:coverage": "ALT_TEST=1 nyc mocha",
"localize-display-strings": "./alt.mjs",
"print-all-help": "rm -f help.txt && (./alt.mjs help && echo -e '\n---\n' && ./alt.mjs help translate && echo -e '\n---\n' && ./alt.mjs help list-models) > help.txt",
"generate-toc": "./scripts/gh-md-toc --insert README.md && rm -f README.md.orig.* README.md.toc.* && echo '\n**README.md updated with new table of contents**'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drone1/alt.git"
},
"keywords": [
"localization",
"translation",
"cli",
"ai",
"anthropic",
"claude",
"chatgpt",
"openai",
"gemini",
"google"
],
"author": "drone1",
"license": "MIT",
"bugs": {
"url": "https://github.com/drone1/alt/issues"
},
"homepage": "https://github.com/drone1/alt#readme",
"dependencies": {
"axios": "^1.8.4",
"chalk": "^5.4.1",
"commander": "^11.1.0",
"figlet": "^1.8.0",
"gradient-string": "^3.0.0",
"listr2": "^8.2.5",
"locale-codes": "^1.3.1",
"strip-json-comments": "^5.0.1"
},
"engines": {
"node": ">=14.0.0"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80
},
"devDependencies": {
"chai": "^5.2.0",
"execa": "^9.5.2",
"mocha": "^11.1.0",
"nyc": "^17.1.0"
}
}