-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "ssm-get-parameters-action",
"version": "1.0.4",
"description": "Get Parameters from AWS SSM",
"main": "dist/index.js",
"type": "module",
"author": "Emmanuel Isenah <emmanuelisenah@gmail.com> (https://emmanuelisenah.com)",
"license": "ISC",
"private": true,
"files": [
"/dist",
"./action.yml",
"./action.yaml",
"./README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/armadillidiid/ssm-get-parameters-action.git"
},
"scripts": {
"dev": "ncc build ./src/index.ts -o dist -m --watch",
"build": "ncc build ./src/index.ts -o dist -m",
"lint": "biome lint",
"lint:fix": "biome lint --write --unsafe",
"format": "biome format --write",
"typecheck": "tsc --noEmit"
},
"keywords": [
"actions",
"aws",
"ssm"
],
"packageManager": "pnpm@9.14.2+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.3",
"husky": "^9.1.7",
"typescript": "^5.7.2"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@aws-sdk/client-ssm": "^3.712.0",
"effect": "^3.11.7",
"p-limit": "^6.1.0",
"zod": "^3.24.1"
}
}