supremo-cli 1.0.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/README.md +28 -0
- package/dist/bin.js +3731 -0
- package/package.json +39 -0
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "supremo-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
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
|
+
"license": "MIT",
|
|
6
|
+
"author": "Supremo",
|
|
7
|
+
"homepage": "https://supremo-three.vercel.app",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/ahmedhijazi94/devsupremo.git",
|
|
11
|
+
"directory": "packages/cli"
|
|
12
|
+
},
|
|
13
|
+
"keywords": ["supremo", "bootstrap", "scaffold", "cli", "mcp", "device-flow"],
|
|
14
|
+
"bin": {
|
|
15
|
+
"supremo": "./dist/bin.js"
|
|
16
|
+
},
|
|
17
|
+
"files": ["dist", "README.md"],
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=18"
|
|
20
|
+
},
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "esbuild src/bin.ts --bundle --platform=node --target=node18 --outfile=dist/bin.js",
|
|
26
|
+
"prepublishOnly": "npm run build",
|
|
27
|
+
"start": "node dist/bin.js",
|
|
28
|
+
"test": "vitest run"
|
|
29
|
+
},
|
|
30
|
+
"//": "Sem dependencies de runtime: o esbuild empacota tudo em dist/bin.js (self-contained), então o npx só baixa o bundle. Estas ficam em devDependencies porque o build precisa empacotá-las.",
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@modelcontextprotocol/sdk": "^1.0.1",
|
|
33
|
+
"commander": "^12.1.0",
|
|
34
|
+
"dotenv": "^16.4.5",
|
|
35
|
+
"@types/node": "^20.12.7",
|
|
36
|
+
"esbuild": "^0.20.2",
|
|
37
|
+
"typescript": "^5.4.5"
|
|
38
|
+
}
|
|
39
|
+
}
|