generated from yumemi-inc/typescript-action-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 888 Bytes
/
package.json
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
{
"name": "@yumemi-inc/update-ecs-task-definition-action",
"description": "Updates an ECS task definition with single or multiple containers, replacing their image references.",
"author": "Natsuki Ikeguchi <[email protected]>",
"license": "MIT",
"readme": "README.md",
"main": "index.js",
"scripts": {
"build": "esbuild index.ts --bundle --platform=node --outfile=dist/index.js",
"check": "biome format . && biome check .",
"fix": "biome format --write . && biome check --apply-unsafe ."
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@aws-sdk/client-ecs": "^3.716.0",
"@octokit/rest": "^21.0.2",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.5.9",
"esbuild": "^0.24.2",
"typescript": "^5.7.2"
}
}