[INIT] Initial Flow

This commit is contained in:
dunemask 2023-11-05 11:50:53 -07:00
commit 2a191ec913
5 changed files with 641 additions and 0 deletions

28
package.json Normal file
View file

@ -0,0 +1,28 @@
{
"name": "infisical-env",
"version": "0.0.1",
"description": "Automate storing envars on system",
"main": "index.js",
"type": "module",
"scripts": {
"test": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git@gitea.dunemask.dev:dunemask/Infisical-env.git"
},
"keywords": [
"infisical",
"environment",
"envar"
],
"author": "dunemask",
"license": "LGPL-2.1-only",
"dependencies": {
"infisical-node": "^1.5.0",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}