supremo-cli 1.1.0 → 1.1.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/dist/bin.js +44 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -3560,8 +3560,51 @@ var {
|
|
|
3560
3560
|
var import_node_fs2 = __toESM(require("node:fs"));
|
|
3561
3561
|
var import_node_path2 = __toESM(require("node:path"));
|
|
3562
3562
|
var import_node_os = __toESM(require("node:os"));
|
|
3563
|
+
|
|
3564
|
+
// package.json
|
|
3565
|
+
var package_default = {
|
|
3566
|
+
name: "supremo-cli",
|
|
3567
|
+
version: "1.1.1",
|
|
3568
|
+
description: "CLI do Supremo \u2014 prepara o workspace local de um projeto (device flow: clona, configura .env.local, instala e roda o baseline) e serve a ponte MCP.",
|
|
3569
|
+
license: "MIT",
|
|
3570
|
+
author: "Supremo",
|
|
3571
|
+
homepage: "https://supremo-three.vercel.app",
|
|
3572
|
+
repository: {
|
|
3573
|
+
type: "git",
|
|
3574
|
+
url: "git+https://github.com/ahmedhijazi94/devsupremo.git",
|
|
3575
|
+
directory: "packages/cli"
|
|
3576
|
+
},
|
|
3577
|
+
keywords: ["supremo", "bootstrap", "scaffold", "cli", "mcp", "device-flow"],
|
|
3578
|
+
bin: {
|
|
3579
|
+
supremo: "./dist/bin.js"
|
|
3580
|
+
},
|
|
3581
|
+
files: ["dist", "README.md"],
|
|
3582
|
+
engines: {
|
|
3583
|
+
node: ">=18"
|
|
3584
|
+
},
|
|
3585
|
+
publishConfig: {
|
|
3586
|
+
access: "public"
|
|
3587
|
+
},
|
|
3588
|
+
scripts: {
|
|
3589
|
+
build: "esbuild src/bin.ts --bundle --platform=node --target=node18 --outfile=dist/bin.js",
|
|
3590
|
+
prepublishOnly: "npm run build",
|
|
3591
|
+
start: "node dist/bin.js",
|
|
3592
|
+
test: "vitest run"
|
|
3593
|
+
},
|
|
3594
|
+
"//": "Sem dependencies de runtime: o esbuild empacota tudo em dist/bin.js (self-contained), ent\xE3o o npx s\xF3 baixa o bundle. Estas ficam em devDependencies porque o build precisa empacot\xE1-las.",
|
|
3595
|
+
devDependencies: {
|
|
3596
|
+
"@modelcontextprotocol/sdk": "^1.0.1",
|
|
3597
|
+
commander: "^12.1.0",
|
|
3598
|
+
dotenv: "^16.4.5",
|
|
3599
|
+
"@types/node": "^20.12.7",
|
|
3600
|
+
esbuild: "^0.20.2",
|
|
3601
|
+
typescript: "^5.4.5"
|
|
3602
|
+
}
|
|
3603
|
+
};
|
|
3604
|
+
|
|
3605
|
+
// src/bin.ts
|
|
3563
3606
|
var program2 = new Command();
|
|
3564
|
-
program2.name("supremo").description("
|
|
3607
|
+
program2.name("supremo").description("CLI do Supremo (bootstrap + ponte MCP)").version(package_default.version);
|
|
3565
3608
|
var DEFAULT_URL = "https://supremo.app/api/mcp";
|
|
3566
3609
|
function claudeDesktopConfigPath() {
|
|
3567
3610
|
if (process.platform === "darwin") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supremo-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "CLI do Supremo — prepara o workspace local de um projeto (device flow: clona, configura .env.local, instala e roda o baseline) e serve a ponte MCP.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Supremo",
|