@dev_desh/flux-cap 0.1.0 → 0.1.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/dist/index.js +40 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -25148,10 +25148,49 @@ async function configCommand(fields) {
25148
25148
  return;
25149
25149
  }
25150
25150
  }
25151
+ // package.json
25152
+ var package_default = {
25153
+ name: "@dev_desh/flux-cap",
25154
+ version: "0.1.1",
25155
+ description: "Git-aware CLI context manager for ADHD developers",
25156
+ bin: {
25157
+ flux: "./dist/index.js"
25158
+ },
25159
+ files: [
25160
+ "dist/**/*",
25161
+ "README.md",
25162
+ "LICENSE"
25163
+ ],
25164
+ scripts: {
25165
+ build: "bun build src/index.ts --outdir dist --target node --format esm",
25166
+ dev: "bun run src/index.ts",
25167
+ prepublishOnly: "bun run build",
25168
+ "local-install": "bun run build && npm link",
25169
+ "local-uninstall": "npm unlink -g flux-cap"
25170
+ },
25171
+ engines: {
25172
+ node: ">=18.0.0"
25173
+ },
25174
+ keywords: [
25175
+ "cli",
25176
+ "productivity",
25177
+ "adhd",
25178
+ "git",
25179
+ "context-switching",
25180
+ "brain-dump",
25181
+ "developer-tools"
25182
+ ],
25183
+ dependencies: {
25184
+ inquirer: "^13.2.5"
25185
+ },
25186
+ devDependencies: {
25187
+ "@types/inquirer": "^9.0.9"
25188
+ }
25189
+ };
25151
25190
 
25152
25191
  // src/index.ts
25153
25192
  var program2 = new Command;
25154
- program2.name(`flux`).description("Git-aware CLI context manager for ADHD developers").version("0.1.0");
25193
+ program2.name(`flux`).description("Git-aware CLI context manager for ADHD developers").version(package_default.version);
25155
25194
  program2.command("init").description("Initialize flux in the current repository").action(initFluxCommand);
25156
25195
  program2.command("reset").description("Resets flux in the current repository").action(resetFluxCommand);
25157
25196
  program2.command("dump <message...>").description("Add a brain dump with a message. You can also include tags by using #tag in the message.").action(brainDumpAddCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev_desh/flux-cap",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Git-aware CLI context manager for ADHD developers",
5
5
  "bin": {
6
6
  "flux": "./dist/index.js"