-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.49 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
53
54
55
56
57
58
59
{
"name": "@sidebase/ssm-secrets",
"type": "module",
"version": "0.5.0",
"description": "AWS SSM command-line and programmatic utility",
"repository": "github:sidebase/ssm-secrets",
"bin": {
"ssm-secrets": "dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./cli": "./dist/cli.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"format": "eslint --fix",
"format:check": "eslint",
"lint": "oxlint --type-aware",
"prepack": "pnpm build"
},
"keywords": [
"AWS",
"SSM",
"CLI",
"secrets",
"parameters"
],
"author": "Marsel Shaikhin <phoenix.apps@proton.me>",
"license": "MIT",
"packageManager": "pnpm@10.18.1+sha512.77a884a165cbba2d8d1c19e3b4880eee6d2fcabd0d879121e282196b80042351d5eb3ca0935fa599da1dc51265cc68816ad2bddd2a2de5ea9fdf92adbec7cd34",
"dependencies": {
"@aws-sdk/client-ssm": "^3.990.0",
"@inquirer/input": "^5.0.6",
"@inquirer/password": "^5.0.6",
"@napi-rs/keyring": "^1.2.0",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.8.0",
"@types/node": "^24.10.13",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^9.39.2",
"oxlint": "^1.48.0",
"oxlint-tsgolint": "^0.13.0",
"typescript": "^5.9.3"
}
}