-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.01 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "translatronx",
"version": "2.1.0",
"description": "Deterministic, incremental, build-time translation compiler using LLMs",
"type": "module",
"bin": {
"translatronx": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"prepare": "husky install",
"commitlint": "commitlint --edit"
},
"keywords": [
"translation",
"i18n",
"localization",
"llm",
"compiler",
"incremental"
],
"author": "",
"license": "MIT",
"files": [
"dist"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.71.0",
"better-sqlite3": "^11.0.0",
"chalk": "^5.0.0",
"cli-progress": "^3.0.0",
"commander": "^12.0.0",
"cosmiconfig": "^9.0.0",
"fast-glob": "^3.0.0",
"groq-sdk": "^0.37.0",
"nodejs-polars": "^0.18.0",
"openai": "^4.0.0",
"ora": "^8.0.0",
"picocolors": "^1.0.0",
"zod": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^10.0.0",
"@semantic-release/npm": "^12.0.0",
"@types/better-sqlite3": "^7.0.0",
"@types/cli-progress": "^3.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/ui": "^2.0.0",
"eslint": "^9.0.0",
"fast-check": "^4.5.3",
"husky": "^9.0.0",
"rimraf": "^6.0.0",
"semantic-release": "^24.0.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}