-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 861 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 861 Bytes
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
{
"name": "ai-translate-action",
"main": "index.js",
"scripts": {
"build": "tsc",
"package": "ncc build dist/index.js -o dist",
"all": "npm run build && npm run package",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
]
},
"devDependencies": {
"@github/local-action": "^6.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.6.1",
"@vercel/ncc": "^0.38.4",
"jest": "^30.2.0",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"openai": "^6.0.0"
}
}