-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.51 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.51 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
{
"name": "ankidroid-localization",
"version": "1.0.0",
"description": "Extract localization for AnkiDroid using Crowdin JS client api",
"main": "index.ts",
"private": true,
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "tsc --watch",
"checkformat": "npx prettier --check *js src/",
"format": "npx prettier --write *js src/",
"lint": "eslint src/ --max-warnings=0",
"test": "jest --passWithNoTests"
},
"repository": "https://github.com/ankidroid/Anki-Android",
"author": "AnkiDroid Open Source Team",
"license": "GPL-3.0",
"dependencies": {
"@crowdin/crowdin-api-client": "^1.44.0",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"extract-zip": "^2.0.1",
"typescript": "^5.8.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.27.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.21",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.18.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.2.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2"
},
"packageManager": "yarn@4.5.3"
}