@higherdev/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.
Files changed (3) hide show
  1. package/README.md +137 -0
  2. package/dist/index.js +5951 -0
  3. package/package.json +52 -0
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@higherdev/cli",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "HigherDEV in your terminal. Full control of the board, live.",
6
+ "bin": {
7
+ "hd": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "dev": "tsx src/index.ts",
14
+ "build": "node scripts/sync-version.mjs && tsup",
15
+ "typecheck": "tsc --noEmit",
16
+ "test": "vitest run",
17
+ "prepublishOnly": "pnpm build",
18
+ "sync-version": "node scripts/sync-version.mjs"
19
+ },
20
+ "dependencies": {
21
+ "@modelcontextprotocol/sdk": "1.30.0",
22
+ "@supabase/supabase-js": "2.112.3",
23
+ "commander": "15.0.0",
24
+ "ink": "7.1.1",
25
+ "react": "19.2.8",
26
+ "zod": "4.4.3"
27
+ },
28
+ "devDependencies": {
29
+ "@higherdev/db": "workspace:*",
30
+ "@higherdev/runner": "workspace:*",
31
+ "@types/node": "22.20.1",
32
+ "@types/react": "19.2.18",
33
+ "ink-testing-library": "4.0.0",
34
+ "tsup": "8.5.1",
35
+ "tsx": "4.23.12",
36
+ "typescript": "5.9.3",
37
+ "vitest": "4.1.11"
38
+ },
39
+ "license": "UNLICENSED",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "git+https://github.com/craig-higherops/higherdev.git",
43
+ "directory": "apps/cli"
44
+ },
45
+ "homepage": "https://dev.higherops.io",
46
+ "engines": {
47
+ "node": ">=22"
48
+ },
49
+ "publishConfig": {
50
+ "access": "public"
51
+ }
52
+ }