domani-cli 0.4.14 → 0.4.44

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 +42 -9
  2. package/dist/domani.cjs +229 -189
  3. package/package.json +14 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "domani-cli",
3
- "version": "0.4.14",
3
+ "version": "0.4.44",
4
4
  "type": "module",
5
5
  "description": "Domain infrastructure for AI agents. Search, register, DNS, email, connect - all from your terminal. Installs the `domani` command.",
6
6
  "license": "MIT",
@@ -9,10 +9,10 @@
9
9
  "repository": {
10
10
  "type": "git",
11
11
  "url": "git+https://github.com/gwendall/domani-app.git",
12
- "directory": "cli"
12
+ "directory": "apps/cli"
13
13
  },
14
14
  "bin": {
15
- "domani": "./dist/domani.cjs"
15
+ "domani": "dist/domani.cjs"
16
16
  },
17
17
  "files": [
18
18
  "dist/domani.cjs",
@@ -22,16 +22,17 @@
22
22
  "engines": {
23
23
  "node": ">=18"
24
24
  },
25
+ "packageManager": "pnpm@10.27.0",
25
26
  "scripts": {
26
27
  "build": "node build.mjs",
27
28
  "install:local": "node build.mjs && cp dist/domani.cjs $(which domani)",
29
+ "check": "tsc --noEmit",
28
30
  "typecheck": "tsc --noEmit",
29
31
  "test": "npx tsx --test src/__tests__/*.test.ts",
30
32
  "test:e2e": "npx tsx --test src/__tests__/e2e/*.test.ts",
31
33
  "test:e2e:full": "E2E_MUTATE=1 npx tsx --test src/__tests__/e2e/*.test.ts",
32
34
  "test:all": "npx tsx --test src/__tests__/*.test.ts src/__tests__/e2e/*.test.ts",
33
- "dev": "tsc --watch",
34
- "publish:npm": "node build.mjs && npm publish --access public"
35
+ "dev": "tsc --watch"
35
36
  },
36
37
  "keywords": [
37
38
  "domain",
@@ -52,14 +53,15 @@
52
53
  "usdc"
53
54
  ],
54
55
  "dependencies": {
55
- "@clack/prompts": "^1.0.1",
56
- "commander": "^13.1.0",
57
- "picocolors": "^1.1.1",
58
- "yocto-spinner": "^1.1.0"
56
+ "@clack/prompts": "1.0.1",
57
+ "commander": "13.1.0",
58
+ "picocolors": "1.1.1",
59
+ "yocto-spinner": "1.1.0"
59
60
  },
60
61
  "devDependencies": {
61
- "@types/node": "^20.0.0",
62
- "esbuild": "^0.27.3",
63
- "typescript": "^5.0.0"
62
+ "@types/node": "20.19.33",
63
+ "esbuild": "0.27.3",
64
+ "tsx": "4.23.1",
65
+ "typescript": "5.9.3"
64
66
  }
65
67
  }