@saidulbadhon/jssm-cli 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +4372 -0
  2. package/package.json +50 -0
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@saidulbadhon/jssm-cli",
3
+ "version": "1.5.0",
4
+ "private": false,
5
+ "description": "CLI for JSSM - Simple environment variable manager",
6
+ "author": "Zahidul Islam",
7
+ "license": "MIT",
8
+ "type": "module",
9
+ "bin": {
10
+ "jssm": "./dist/index.js"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "README.md"
15
+ ],
16
+ "keywords": [
17
+ "env",
18
+ "environment",
19
+ "variables",
20
+ "ssm",
21
+ "aws",
22
+ "secrets",
23
+ "config",
24
+ "cli"
25
+ ],
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/jutsuai/jssm-platfrom.git"
29
+ },
30
+ "scripts": {
31
+ "dev": "bun src/index.ts",
32
+ "build": "bun build src/index.ts --outdir dist --target bun --format esm && chmod +x dist/index.js",
33
+ "build:node": "npx esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --external:os --external:path --external:fs --external:crypto --external:child_process && chmod +x dist/index.js",
34
+ "type-check": "tsc --noEmit",
35
+ "prepublishOnly": "npm run build:node"
36
+ },
37
+ "engines": {
38
+ "node": ">=18.0.0"
39
+ },
40
+ "devDependencies": {
41
+ "@types/bun": "latest",
42
+ "@types/node": "^20.10.0",
43
+ "bun-types": "^1.3.4",
44
+ "esbuild": "^0.20.2",
45
+ "typescript": "^5.3.3"
46
+ },
47
+ "dependencies": {
48
+ "@inquirer/prompts": "^8.2.0"
49
+ }
50
+ }