-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 915 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 915 Bytes
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
{
"name": "@autonoma-ai/envsync",
"version": "2.0.0",
"description": "An NPM package that retrieves secrets from AWS Secrets Manager and writes them to an .env file.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Autonoma-AI/envsync.git"
},
"author": "Simon Mullen <sfmullen@autonoma.app> (https://github.com/sfmullen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Autonoma-AI/envsync/issues"
},
"homepage": "https://github.com/Autonoma-AI/envsync#readme",
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.1045.0"
},
"devDependencies": {
"@types/node": "^24.1.0",
"typescript": "^6.0.3"
}
}