@dsmrt/axiom-cli 0.0.1

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/package.json +61 -0
  2. package/tsconfig.json +11 -0
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@dsmrt/axiom-cli",
3
+ "version": "0.0.1",
4
+ "description": "axiom cli for managing configs including secrets",
5
+ "main": "lib/bin/axiom.js",
6
+ "types": "lib/index.d.ts",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git@github.com:dsmrt/axiom.git",
10
+ "directory": "cli"
11
+ },
12
+ "publishConfig": {
13
+ "registry": "https://registry.npmjs.org/"
14
+ },
15
+ "bin": {
16
+ "axiom": "./lib/bin/axiom.js"
17
+ },
18
+ "scripts": {
19
+ "lint": "eslint ./src/ --ext .ts",
20
+ "lint:fix": "eslint ./src/ --ext .ts --fix",
21
+ "test": "vitest run --coverage",
22
+ "watch": "vitest watch --coverage",
23
+ "build": "tsc -d -p ./tsconfig.json"
24
+ },
25
+ "keywords": [
26
+ "axiom",
27
+ "config",
28
+ "aws",
29
+ "cli"
30
+ ],
31
+ "author": {
32
+ "name": "Damien Smrt",
33
+ "url": "https://dsmrt.com"
34
+ },
35
+ "license": "MIT",
36
+ "devDependencies": {
37
+ "@types/inquirer": "^8.0.0",
38
+ "@types/node": "^20.9.0",
39
+ "@types/yargs": "^17.0.31",
40
+ "@typescript-eslint/eslint-plugin": "^6.12.0",
41
+ "@typescript-eslint/parser": "^6.12.0",
42
+ "@vitest/coverage-v8": "^0.34.6",
43
+ "aws-sdk-client-mock": "^3.0.0",
44
+ "eslint": "^8.54.0",
45
+ "prettier": "^3.1.0",
46
+ "ts-node": "^10.9.1",
47
+ "typescript": "^5.2.2",
48
+ "vitest": "^0.34.6"
49
+ },
50
+ "dependencies": {
51
+ "@aws-sdk/client-ssm": "^3.451.0",
52
+ "@aws-sdk/client-sts": "^3.454.0",
53
+ "@aws-sdk/credential-providers": "^3.454.0",
54
+ "@aws-sdk/types": "^3.451.0",
55
+ "@dsmrt/axiom-aws-sdk": "workspace:^",
56
+ "@dsmrt/axiom-config": "workspace:^",
57
+ "chalk": "^4.1.2",
58
+ "inquirer": "^8.0.0",
59
+ "yargs": "^17.7.2"
60
+ }
61
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es2022",
4
+ "module": "node16",
5
+ "strict": true,
6
+ "esModuleInterop": true,
7
+ "moduleResolution": "node16",
8
+ "outDir": "lib"
9
+ },
10
+ "include": ["src/index.ts"]
11
+ }