@dev_desh/flux-cap 0.1.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 +234 -0
  2. package/dist/index.js +25162 -0
  3. package/package.json +38 -0
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@dev_desh/flux-cap",
3
+ "version": "0.1.0",
4
+ "description": "Git-aware CLI context manager for ADHD developers",
5
+ "bin": {
6
+ "flux": "./dist/index.js"
7
+ },
8
+ "files": [
9
+ "dist/**/*",
10
+ "README.md",
11
+ "LICENSE"
12
+ ],
13
+ "scripts": {
14
+ "build": "bun build src/index.ts --outdir dist --target node --format esm",
15
+ "dev": "bun run src/index.ts",
16
+ "prepublishOnly": "bun run build",
17
+ "local-install": "bun run build && npm link",
18
+ "local-uninstall": "npm unlink -g flux-cap"
19
+ },
20
+ "engines": {
21
+ "node": ">=18.0.0"
22
+ },
23
+ "keywords": [
24
+ "cli",
25
+ "productivity",
26
+ "adhd",
27
+ "git",
28
+ "context-switching",
29
+ "brain-dump",
30
+ "developer-tools"
31
+ ],
32
+ "dependencies": {
33
+ "inquirer": "^13.2.5"
34
+ },
35
+ "devDependencies": {
36
+ "@types/inquirer": "^9.0.9"
37
+ }
38
+ }