-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.63 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
{
"name": "action-translation",
"version": "0.28.1",
"private": true,
"type": "module",
"description": "GitHub Action to sync and review translations across repositories",
"main": "dist/index.js",
"engines": {
"node": ">=24"
},
"bin": {
"translate": "dist/cli/index.js"
},
"scripts": {
"build": "tsc && node build-action.mjs",
"build:cli": "tsc",
"test": "jest",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"*.mjs\" --max-warnings 0",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"*.mjs\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"*.mjs\"",
"check-dev-refs": "node check-dev-refs.mjs"
},
"keywords": [
"github-action",
"translation",
"sync",
"review",
"myst",
"markdown"
],
"author": "QuantEcon",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/QuantEcon/action-translation.git"
},
"dependencies": {
"@actions/core": "^2.0.3",
"@actions/github": "^8.0.1",
"@anthropic-ai/sdk": "^0.78.0",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^14.0.3",
"ink": "^4.4.1",
"js-yaml": "^4.1.0",
"react": "^18.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/jest": "^29.5.10",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.0",
"@types/react": "^18.3.28",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"esbuild": "^0.27.3",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
}
}