-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.05 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
{
"name": "setup-iamlive",
"version": "0.2.0",
"description": "Capture the used AWS IAM permissions using client-side monitoring (CSM) within your workflow.",
"main": "index.ts",
"repository": "[email protected]:marcofranssen/setup-iamlive.git",
"author": "Marco Franssen <[email protected]>",
"license": "MIT",
"scripts": {
"build": "pnpm build-main && pnpm build-post",
"build-main": "ncc build -m -s --license licenses.txt",
"build-post": "ncc build capture-policy.js -m -s --license licenses.txt -o dist/capture-policy",
"build:watch": "ncc build -m -s --license licenses.txt -w",
"build-post:watch": "ncc build capture-policy.js -m -s --license licenses.txt -o dist/capture-policy -w",
"test-run": "act -j assert"
},
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/core": "^1.11.1",
"@actions/tool-cache": "^2.0.1",
"find-process": "^1.4.7"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.9.4",
"@vercel/ncc": "^0.38.3",
"typescript": "^5.7.2"
}
}