context-dropper 0.1.3 → 0.1.4
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/index.js +39 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6555,6 +6555,44 @@ function createFilesetCommand(deps) {
|
|
|
6555
6555
|
}
|
|
6556
6556
|
};
|
|
6557
6557
|
}
|
|
6558
|
+
// package.json
|
|
6559
|
+
var package_default = {
|
|
6560
|
+
name: "context-dropper",
|
|
6561
|
+
version: "0.1.4",
|
|
6562
|
+
description: "CLI for iterating through a fixed list of files, tracking position, and tagging progress within an AI agent's session.",
|
|
6563
|
+
author: {
|
|
6564
|
+
name: "Fardjad Davari",
|
|
6565
|
+
email: "public@fardjad.com"
|
|
6566
|
+
},
|
|
6567
|
+
license: "MIT",
|
|
6568
|
+
repository: {
|
|
6569
|
+
type: "git",
|
|
6570
|
+
url: "https://github.com/fardjad/context-dropper"
|
|
6571
|
+
},
|
|
6572
|
+
keywords: ["cli", "context", "llm", "ai", "opencode", "automation"],
|
|
6573
|
+
bin: {
|
|
6574
|
+
"context-dropper": "./dist/index.js"
|
|
6575
|
+
},
|
|
6576
|
+
main: "dist/index.js",
|
|
6577
|
+
module: "dist/index.js",
|
|
6578
|
+
type: "module",
|
|
6579
|
+
files: ["dist/index.js"],
|
|
6580
|
+
scripts: {
|
|
6581
|
+
build: "bun build ./src/index.ts --outdir ./dist --target node",
|
|
6582
|
+
prepack: "npm run build"
|
|
6583
|
+
},
|
|
6584
|
+
devDependencies: {
|
|
6585
|
+
"@types/bun": "latest",
|
|
6586
|
+
typescript: "^5"
|
|
6587
|
+
},
|
|
6588
|
+
dependencies: {
|
|
6589
|
+
"@types/yargs": "^17.0.35",
|
|
6590
|
+
yargs: "^18.0.0"
|
|
6591
|
+
}
|
|
6592
|
+
};
|
|
6593
|
+
|
|
6594
|
+
// src/version/version.ts
|
|
6595
|
+
var getPackageVersion = () => package_default.version;
|
|
6558
6596
|
|
|
6559
6597
|
// src/cli/app.ts
|
|
6560
6598
|
async function runCli(argv = process.argv, deps = {}) {
|
|
@@ -6566,7 +6604,7 @@ async function runCli(argv = process.argv, deps = {}) {
|
|
|
6566
6604
|
const stdout = deps.stdout ?? process.stdout;
|
|
6567
6605
|
const stderr = deps.stderr ?? process.stderr;
|
|
6568
6606
|
try {
|
|
6569
|
-
await yargs_default(parseArgs).scriptName("context-dropper").usage("$0 [--data-dir <path>] <cmd> [args]").option("data-dir", {
|
|
6607
|
+
await yargs_default(parseArgs).scriptName("context-dropper").usage("$0 [--data-dir <path>] <cmd> [args]").version(getPackageVersion()).option("data-dir", {
|
|
6570
6608
|
type: "string",
|
|
6571
6609
|
global: true,
|
|
6572
6610
|
default: path5.resolve(cwd, ".context-dropper"),
|
package/package.json
CHANGED