@betterness/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.
Files changed (2) hide show
  1. package/dist/index.js +1835 -0
  2. package/package.json +49 -0
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@betterness/cli",
3
+ "version": "1.0.0",
4
+ "description": "Betterness CLI - Agent-first terminal interface for the Betterness platform",
5
+ "type": "module",
6
+ "bin": {
7
+ "betterness": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist/"
11
+ ],
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "scripts": {
16
+ "dev": "tsx src/index.ts",
17
+ "dev:watch": "tsup --watch",
18
+ "build": "tsup",
19
+ "lint": "eslint src/",
20
+ "typecheck": "tsc --noEmit",
21
+ "test": "vitest run",
22
+ "test:watch": "vitest",
23
+ "docs": "tsx scripts/generate-docs.ts",
24
+ "prepublishOnly": "npm run build"
25
+ },
26
+ "engines": {
27
+ "node": ">=20.0.0"
28
+ },
29
+ "keywords": [
30
+ "betterness",
31
+ "health",
32
+ "wellness",
33
+ "cli",
34
+ "mcp"
35
+ ],
36
+ "license": "UNLICENSED",
37
+ "dependencies": {
38
+ "commander": "^13.1.0",
39
+ "zod": "^3.24.0"
40
+ },
41
+ "devDependencies": {
42
+ "@types/node": "^22.13.0",
43
+ "eslint": "^9.20.0",
44
+ "tsup": "^8.4.0",
45
+ "tsx": "^4.19.0",
46
+ "typescript": "^5.7.0",
47
+ "vitest": "^3.0.0"
48
+ }
49
+ }