@dev_desh/flux-cap 0.8.0 → 0.10.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.
- package/README.md +128 -61
- package/dist/index.js +45368 -4362
- package/dist/rezi_ui_native.darwin-arm64-xhnnex3m.node +0 -0
- package/dist/rezi_ui_native.darwin-x64-eqdka8v8.node +0 -0
- package/dist/rezi_ui_native.linux-arm64-gnu-tdtr0q84.node +0 -0
- package/dist/rezi_ui_native.linux-x64-gnu-w49c1xpp.node +0 -0
- package/dist/rezi_ui_native.win32-arm64-msvc-gzx8450t.node +0 -0
- package/dist/rezi_ui_native.win32-x64-msvc-gjkcr5w3.node +0 -0
- package/package.json +65 -55
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,57 +1,67 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
2
|
+
"name": "@dev_desh/flux-cap",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.10.1",
|
|
5
|
+
"description": "Git-aware CLI context manager for ADHD developers",
|
|
6
|
+
"bin": {
|
|
7
|
+
"flux": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/**/*",
|
|
11
|
+
"README.md",
|
|
12
|
+
"LICENSE"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "bun build src/index.ts --outdir dist --target node --format esm --external @rezi-ui/core --external @rezi-ui/node --external @rezi-ui/jsx --external @rezi-ui/native",
|
|
16
|
+
"dev": "bun run src/index.ts",
|
|
17
|
+
"prepublishOnly": "bun run build",
|
|
18
|
+
"publish": "npm publish --access=public",
|
|
19
|
+
"local-install": "bun run build && npm link",
|
|
20
|
+
"local-uninstall": "npm unlink -g flux-cap",
|
|
21
|
+
"local-reinstall": "bun run local-uninstall && bun run local-install",
|
|
22
|
+
"changeset": "changeset",
|
|
23
|
+
"changeset:add": "changeset add",
|
|
24
|
+
"changeset:status": "changeset status",
|
|
25
|
+
"changeset:version": "changeset version",
|
|
26
|
+
"changeset:publish": "changeset publish",
|
|
27
|
+
"format": "bunx --bun @biomejs/biome check --write"
|
|
28
|
+
},
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=18.0.0"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"cli",
|
|
34
|
+
"productivity",
|
|
35
|
+
"adhd",
|
|
36
|
+
"git",
|
|
37
|
+
"context-switching",
|
|
38
|
+
"brain-dump",
|
|
39
|
+
"developer-tools"
|
|
40
|
+
],
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@rezi-ui/core": "^0.1.0-alpha.59",
|
|
43
|
+
"@rezi-ui/jsx": "^0.1.0-alpha.59",
|
|
44
|
+
"@rezi-ui/node": "^0.1.0-alpha.59",
|
|
45
|
+
"@types/react": "^19.2.14",
|
|
46
|
+
"@types/react-dom": "^19.2.3",
|
|
47
|
+
"commander": "^14.0.3",
|
|
48
|
+
"fuse.js": "^7.1.0",
|
|
49
|
+
"ink": "^6.8.0",
|
|
50
|
+
"ink-text-input": "^6.0.0",
|
|
51
|
+
"inquirer": "^13.2.5",
|
|
52
|
+
"react": "^19.2.4",
|
|
53
|
+
"react-devtools-core": "^7.0.1",
|
|
54
|
+
"react-dom": "^19.2.4"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@biomejs/biome": "2.4.4",
|
|
58
|
+
"@changesets/cli": "^2.29.8",
|
|
59
|
+
"@types/inquirer": "^9.0.9",
|
|
60
|
+
"@types/node": "^25.3.3"
|
|
61
|
+
},
|
|
62
|
+
"repository": {
|
|
63
|
+
"type": "git",
|
|
64
|
+
"url": "https://github.com/kaustubh285/flux-cap"
|
|
65
|
+
},
|
|
66
|
+
"license": "MIT"
|
|
57
67
|
}
|