-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.28 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
84
85
{
"name": "anylang",
"version": "4.0.0",
"description": "A translator's kit that uses the free APIs of Google Translate, Yandex, Bing, ChatGPT, and other LLMs",
"keywords": [
"translation",
"translate",
"translator",
"google",
"yandex",
"bing",
"deepl",
"free",
"api",
"openai",
"chatgpt",
"llm",
"scheduling",
"batch-translation",
"language"
],
"license": "Apache-2.0",
"author": "Robert Vitonsky <https://github.com/vitonsky>",
"homepage": "https://github.com/translate-tools/core",
"repository": {
"type": "git",
"url": "https://github.com/translate-tools/core"
},
"scripts": {
"test": "vitest",
"build": "rm -rf ./dist && gulp",
"lint": "prettier \"{*,**/*}.{ts,tsx,js,jsx}\" --check && eslint --max-warnings 0 .",
"prettify": "prettier --write **/*.{ts,tsx,js} && eslint --fix .",
"release": "npm run build && cd ./dist && npm publish",
"release:patch": "npm version patch && npm run release",
"release:minor": "npm version minor && npm run release",
"prepare": "husky"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@xmldom/xmldom": "^0.9.8",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"query-string": "^9.2.2",
"xpath": "^0.0.34",
"zod": "^4.0.5"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.31.0",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.20",
"@types/node": "^24.0.14",
"@types/xmldom": "^0.1.34",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"@xenova/transformers": "^2.0.1",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"gulp": "^5.0.1",
"gulp-babel": "^8.0.0",
"gulp-clean-package": "^0.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"merge-stream": "^2.0.0",
"music-metadata": "^11.7.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0",
"vitest": "^3.2.4"
}
}