-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.48 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
{
"name": "aws-cloudformation-stack-status-checker",
"version": "2.0.0",
"private": true,
"description": "AWS CloudFormation Stack status checker for GitHub Action",
"main": "dist/main.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig-build.json",
"clean": "rm -rf dist",
"lint-fix": "eslint src/**/*.ts --fix",
"lint": "eslint src/**/*.ts",
"package": "ncc build --license licenses.txt --target es2022",
"all": "pnpm clean && pnpm build && pnpm lint-fix && pnpm package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poad/aws-cloudformation-stack-status-checker.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Kenji Saito",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1",
"@aws-sdk/client-cloudformation": "^3.1037.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.6.0",
"@vercel/ncc": "^0.38.4",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.2.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-promise": "^7.2.1",
"jiti": "^2.6.1",
"js-yaml": "^4.1.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"packageManager": "pnpm@10.33.2"
}