@cubedot/cli 0.1.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/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@cubedot/cli",
3
+ "version": "0.1.0",
4
+ "description": "Cubedot CLI — connect your repo to the Cubedot MCP and drive the build loop",
5
+ "license": "UNLICENSED",
6
+ "homepage": "https://cubedot.ai",
7
+ "keywords": ["cubedot", "mcp", "cli", "spec-driven", "claude-code", "ai-agents"],
8
+ "publishConfig": { "access": "public" },
9
+ "type": "module",
10
+ "bin": {
11
+ "cubedot": "dist/cli.js"
12
+ },
13
+ "main": "dist/cli.js",
14
+ "files": [
15
+ "dist",
16
+ "cli-assets"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "dev": "tsup --watch",
21
+ "typecheck": "tsc --noEmit",
22
+ "prepublishOnly": "npm run build && npm run typecheck"
23
+ },
24
+ "dependencies": {
25
+ "@inquirer/input": "^3.0.0",
26
+ "@modelcontextprotocol/sdk": "^1.29.0",
27
+ "commander": "^12.1.0",
28
+ "picocolors": "^1.1.1"
29
+ },
30
+ "devDependencies": {
31
+ "@types/node": "^20.14.0",
32
+ "tsup": "^8.3.0",
33
+ "typescript": "^5.5.0"
34
+ },
35
+ "engines": {
36
+ "node": ">=18"
37
+ }
38
+ }