-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.02 KB
/
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
28
29
30
31
32
33
34
35
36
37
{
"name": "aws-lambda-update-action",
"version": "2.0.3",
"private": true,
"main": "build/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kazimanzurrashid/lambda-update-action"
},
"scripts": {
"format": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"build": "rimraf build && tsc",
"pack": "ncc build --source-map --license licenses.txt",
"release": "release-it"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@aws-sdk/client-lambda": "^3.588.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@types/node": "^20.13.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"release-it": "^17.3.0",
"rimraf": "^5.0.7",
"typescript": "^5.4.5"
}
}