@a9s/cli 0.1.0 → 1.0.7

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.
package/dist/src/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import { Command, Option } from "@commander-js/extra-typings";
3
4
  import { App } from "./App.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a9s/cli",
3
- "version": "0.1.0",
3
+ "version": "1.0.7",
4
4
  "description": "k9s-style TUI navigator for AWS services",
5
5
  "keywords": [
6
6
  "aws",
@@ -19,7 +19,7 @@
19
19
  "url": "https://github.com/IamShobe/a9s.git"
20
20
  },
21
21
  "bin": {
22
- "a9s": "./dist/index.js"
22
+ "a9s": "./dist/src/index.js"
23
23
  },
24
24
  "files": [
25
25
  "dist/"
@@ -35,12 +35,16 @@
35
35
  "localstack:setup": "pnpm localstack:up && sleep 3 && pnpm localstack:seed",
36
36
  "dev:local": "AWS_ENDPOINT_URL=http://localhost:4566 AWS_REGION=us-east-1 AWS_ACCESS_KEY_ID=test AWS_SECRET_ACCESS_KEY=test tsx --watch src/index.tsx",
37
37
  "dev": "tsx --watch src/index.tsx",
38
- "build": "tsc",
38
+ "build": "tsc && node scripts/add-shebang.js",
39
39
  "lint": "oxlint",
40
40
  "format": "oxfmt --write",
41
41
  "test": "vitest run",
42
42
  "typecheck": "tsc --noEmit",
43
- "prepublishOnly": "pnpm build"
43
+ "prepublishOnly": "pnpm build",
44
+ "release:create-pr": "scripts/create-pr.sh",
45
+ "release:merge-if-ci-passes": "scripts/merge-if-ci-passes.sh",
46
+ "release:draft": "scripts/release-draft.sh",
47
+ "release:workflow": "scripts/release-workflow.sh"
44
48
  },
45
49
  "dependencies": {
46
50
  "@aws-sdk/client-s3": "^3.1002.0",