frogoe 0.2.1 → 0.2.2
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/cli.js +52 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3084,8 +3084,59 @@ var init_run2 = __esm({
|
|
|
3084
3084
|
// src/cli.ts
|
|
3085
3085
|
import { defineCommand as defineCommand7, runMain } from "citty";
|
|
3086
3086
|
|
|
3087
|
+
// package.json
|
|
3088
|
+
var package_default = {
|
|
3089
|
+
name: "frogoe",
|
|
3090
|
+
version: "0.2.2",
|
|
3091
|
+
description: "froge CLI \u2014 the agent's hands: init, add, run, check, bundle",
|
|
3092
|
+
homepage: "https://github.com/frogoe/engine#readme",
|
|
3093
|
+
bugs: "https://github.com/frogoe/engine/issues",
|
|
3094
|
+
license: "Apache-2.0",
|
|
3095
|
+
repository: {
|
|
3096
|
+
type: "git",
|
|
3097
|
+
url: "git+https://github.com/frogoe/engine.git",
|
|
3098
|
+
directory: "packages/cli"
|
|
3099
|
+
},
|
|
3100
|
+
bin: {
|
|
3101
|
+
frogoe: "bin/frogoe.mjs"
|
|
3102
|
+
},
|
|
3103
|
+
files: [
|
|
3104
|
+
"bin",
|
|
3105
|
+
"dist"
|
|
3106
|
+
],
|
|
3107
|
+
type: "module",
|
|
3108
|
+
exports: {
|
|
3109
|
+
".": {
|
|
3110
|
+
import: "./dist/cli.js",
|
|
3111
|
+
types: "./dist/cli.d.ts"
|
|
3112
|
+
}
|
|
3113
|
+
},
|
|
3114
|
+
scripts: {
|
|
3115
|
+
test: "bun test",
|
|
3116
|
+
"check-types": "tsc --noEmit",
|
|
3117
|
+
build: "tsup && bun scripts/build-copy.mjs",
|
|
3118
|
+
dev: "bun src/cli.ts"
|
|
3119
|
+
},
|
|
3120
|
+
dependencies: {
|
|
3121
|
+
"@hono/node-server": "^2.1.1",
|
|
3122
|
+
"@puppeteer/browsers": "^3.2.1",
|
|
3123
|
+
citty: "^0.2.2",
|
|
3124
|
+
esbuild: "^0.28.2",
|
|
3125
|
+
hono: "^4.13.5",
|
|
3126
|
+
"puppeteer-core": "^25.9.0",
|
|
3127
|
+
"qrcode-terminal": "^0.12.0"
|
|
3128
|
+
},
|
|
3129
|
+
devDependencies: {
|
|
3130
|
+
"@frogoe/lint": "workspace:*",
|
|
3131
|
+
tsup: "^8.5.1"
|
|
3132
|
+
},
|
|
3133
|
+
engines: {
|
|
3134
|
+
node: ">=22"
|
|
3135
|
+
}
|
|
3136
|
+
};
|
|
3137
|
+
|
|
3087
3138
|
// src/version.ts
|
|
3088
|
-
var VERSION =
|
|
3139
|
+
var VERSION = package_default.version;
|
|
3089
3140
|
|
|
3090
3141
|
// src/cli.ts
|
|
3091
3142
|
for (const stream of [process.stdout, process.stderr]) {
|
package/package.json
CHANGED