glop.dev 0.3.0 → 0.4.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.
- package/dist/index.js +30 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -605,8 +605,37 @@ var statusCommand = new Command6("status").description("Show current Run status
|
|
|
605
605
|
}
|
|
606
606
|
});
|
|
607
607
|
|
|
608
|
+
// package.json
|
|
609
|
+
var package_default = {
|
|
610
|
+
name: "glop.dev",
|
|
611
|
+
version: "0.4.0",
|
|
612
|
+
type: "module",
|
|
613
|
+
bin: {
|
|
614
|
+
glop: "./dist/index.js"
|
|
615
|
+
},
|
|
616
|
+
files: [
|
|
617
|
+
"dist"
|
|
618
|
+
],
|
|
619
|
+
scripts: {
|
|
620
|
+
build: "tsup",
|
|
621
|
+
dev: "tsx src/index.ts",
|
|
622
|
+
test: "vitest run",
|
|
623
|
+
"test:watch": "vitest",
|
|
624
|
+
prepublishOnly: `node -e "if (!process.env.GLOP_DEFAULT_SERVER_URL) { console.error('Error: GLOP_DEFAULT_SERVER_URL must be set before publishing'); process.exit(1); }" && tsup`
|
|
625
|
+
},
|
|
626
|
+
dependencies: {
|
|
627
|
+
commander: "^13.0.0"
|
|
628
|
+
},
|
|
629
|
+
devDependencies: {
|
|
630
|
+
tsup: "^8.3.0",
|
|
631
|
+
tsx: "^4.19.0",
|
|
632
|
+
typescript: "^5.7.0",
|
|
633
|
+
vitest: "^4.0.18"
|
|
634
|
+
}
|
|
635
|
+
};
|
|
636
|
+
|
|
608
637
|
// src/index.ts
|
|
609
|
-
var program = new Command7().name("glop").description("Passive control plane for local Claude-driven development").version(
|
|
638
|
+
var program = new Command7().name("glop").description("Passive control plane for local Claude-driven development").version(package_default.version);
|
|
610
639
|
program.addCommand(authCommand);
|
|
611
640
|
program.addCommand(deactivateCommand);
|
|
612
641
|
program.addCommand(doctorCommand);
|