@calebmabry/wami 0.1.2 → 0.2.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 (3) hide show
  1. package/README.md +58 -26
  2. package/dist/cli.js +2780 -161
  3. package/package.json +35 -4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@calebmabry/wami",
3
- "version": "0.1.2",
4
- "description": "Where Am I - A TUI tool that detects your repository and shows available commands",
3
+ "version": "0.2.0",
4
+ "description": "Smart TUI that auto-detects your project type (Python, Node.js, etc.) and shows available commands - package manager scripts, task runners (poe, npm), and dev tools (ruff, pytest, eslint)",
5
5
  "module": "src/cli.tsx",
6
6
  "type": "module",
7
7
  "bin": {
@@ -12,7 +12,11 @@
12
12
  "build": "bun build src/cli.tsx --outdir dist --target node --format esm --external react --external ink --external yoga-layout-prebuilt",
13
13
  "start": "bun run dist/cli.js",
14
14
  "typecheck": "tsc --noEmit",
15
- "publish": "bun run build && npm publish"
15
+ "prepublishOnly": "bun run build",
16
+ "release:patch": "npm version patch && npm publish && git push --follow-tags",
17
+ "release:minor": "npm version minor && npm publish && git push --follow-tags",
18
+ "release:major": "npm version major && npm publish && git push --follow-tags",
19
+ "release": "bun run build && npm publish"
16
20
  },
17
21
  "publishConfig": {
18
22
  "access": "public"
@@ -26,7 +30,33 @@
26
30
  "terminal",
27
31
  "developer-tools",
28
32
  "repository",
29
- "package-manager"
33
+ "package-manager",
34
+ "npm",
35
+ "yarn",
36
+ "pnpm",
37
+ "bun",
38
+ "python",
39
+ "nodejs",
40
+ "poetry",
41
+ "uv",
42
+ "pdm",
43
+ "pipenv",
44
+ "poethepoet",
45
+ "poe",
46
+ "task-runner",
47
+ "monorepo",
48
+ "project-detection",
49
+ "command-runner",
50
+ "dev-tools",
51
+ "pytest",
52
+ "ruff",
53
+ "eslint",
54
+ "prettier",
55
+ "typescript",
56
+ "script-runner",
57
+ "vim-navigation",
58
+ "ink",
59
+ "react-terminal"
30
60
  ],
31
61
  "author": "Caleb Mabry",
32
62
  "license": "MIT",
@@ -47,6 +77,7 @@
47
77
  "typescript": "^5"
48
78
  },
49
79
  "dependencies": {
80
+ "@iarna/toml": "^2.2.5",
50
81
  "ink": "^6.7.0",
51
82
  "ink-spinner": "^5.0.0",
52
83
  "react": "^19.2.4",