-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.8 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.8 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "deepl-cli",
"version": "1.0.0",
"description": "Next-generation CLI for DeepL translation and writing enhancement",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli/index.d.ts",
"import": "./dist/cli/index.js"
}
},
"files": [
"dist",
"!dist/**/*.tsbuildinfo",
"!dist/**/*.js.map",
"!dist/**/*.d.ts.map",
"README.md",
"LICENSE"
],
"bin": {
"deepl": "dist/cli/index.js"
},
"scripts": {
"dev": "ts-node src/cli/index.ts",
"build": "tsc && chmod +x dist/cli/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "jest tests/e2e",
"examples": "bash examples/run-all.sh",
"examples:fast": "bash examples/run-all.sh --fast",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' 'tests/**/*.ts' --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"deepl",
"translation",
"cli",
"i18n",
"localization",
"translation-tool",
"command-line",
"typescript"
],
"author": "DeepL SE",
"license": "MIT",
"engines": {
"node": ">=20.19.0",
"npm": ">=9.0.0"
},
"dependencies": {
"axios": "^1.7.9",
"better-sqlite3": "^12.0.0",
"chalk": "^5.3.0",
"chokidar": "^5.0.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"fast-glob": "^3.3.3",
"form-data": "^4.0.4",
"inquirer": "^13.0.0",
"minimatch": "^10.2.1",
"ora": "^9.0.0",
"p-limit": "^7.0.0",
"ws": "^8.19.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^10.0.0",
"@types/better-sqlite3": "^7.6.8",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"@types/ws": "^8.18.1",
"diff": "^8.0.2",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.0.0",
"globals": "^17.3.0",
"jest": "^30.2.0",
"memfs": "^4.6.0",
"nock": "^14.0.11",
"prettier": "^3.1.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.56.0"
},
"repository": {
"type": "git",
"url": "https://github.com/DeepLcom/deepl-cli"
},
"bugs": {
"url": "https://github.com/DeepLcom/deepl-cli/issues"
},
"homepage": "https://github.com/DeepLcom/deepl-cli#readme"
}