@dotcontext/cli 0.9.0 → 0.9.2

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 CHANGED
@@ -1,48 +1,8 @@
1
1
  {
2
2
  "name": "@dotcontext/cli",
3
- "version": "0.9.0",
4
- "description": "Harness engineering runtime for AI-assisted software delivery, with CLI and MCP surfaces",
5
- "main": "dist/cli/index.js",
6
- "exports": {
7
- ".": "./dist/cli/index.js",
8
- "./package.json": "./package.json",
9
- "./cli": "./dist/cli/index.js",
10
- "./harness": "./dist/harness/index.js",
11
- "./mcp": "./dist/mcp/index.js"
12
- },
13
- "bin": {
14
- "dotcontext": "dist/index.js"
15
- },
16
- "files": [
17
- "dist/**/*",
18
- "README.md",
19
- "LICENSE",
20
- "prompts/**/*"
21
- ],
22
- "engines": {
23
- "node": ">=20.0.0"
24
- },
25
- "scripts": {
26
- "build": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\" && tsc",
27
- "build:packages": "npm run build && node scripts/build-package-bundles.js",
28
- "smoke:packages": "node scripts/smoke-package-bundles.js",
29
- "release:packages": "node scripts/release-packages.js",
30
- "release:packages:patch": "node scripts/release-packages.js patch",
31
- "release:packages:minor": "node scripts/release-packages.js minor",
32
- "release:packages:major": "node scripts/release-packages.js major",
33
- "dev": "tsx src/index.ts",
34
- "start": "node dist/index.js",
35
- "test": "jest",
36
- "prepublishOnly": "npm run build",
37
- "version": "npm run build",
38
- "release": "npm version patch && npm publish --access public",
39
- "release:minor": "npm version minor && npm publish --access public",
40
- "release:major": "npm version major && npm publish --access public"
41
- },
42
- "publishConfig": {
43
- "access": "public",
44
- "registry": "https://registry.npmjs.org/"
45
- },
3
+ "version": "0.9.2",
4
+ "description": "Operator-facing package for dotcontext",
5
+ "license": "MIT",
46
6
  "repository": {
47
7
  "type": "git",
48
8
  "url": "git+https://github.com/vinilana/dotcontext.git"
@@ -51,14 +11,23 @@
51
11
  "bugs": {
52
12
  "url": "https://github.com/vinilana/dotcontext/issues"
53
13
  },
54
- "keywords": [
55
- "cli",
56
- "documentation",
57
- "agents",
58
- "scaffold"
14
+ "engines": {
15
+ "node": ">=20.0.0"
16
+ },
17
+ "main": "dist/cli/index.js",
18
+ "types": "dist/cli/index.d.ts",
19
+ "files": [
20
+ "dist/**/*",
21
+ "prompts/**/*",
22
+ "README.md",
23
+ "LICENSE"
59
24
  ],
60
- "author": "",
61
- "license": "MIT",
25
+ "exports": {
26
+ ".": "./dist/cli/index.js"
27
+ },
28
+ "bin": {
29
+ "dotcontext": "dist/index.js"
30
+ },
62
31
  "dependencies": {
63
32
  "@inquirer/prompts": "^7.10.1",
64
33
  "@modelcontextprotocol/sdk": "^1.29.0",
@@ -67,27 +36,11 @@
67
36
  "cli-progress": "^3.12.0",
68
37
  "commander": "^14.0.1",
69
38
  "fs-extra": "^11.3.2",
70
- "glob": "^10.4.5",
39
+ "glob": "^13.0.6",
71
40
  "ignore": "^7.0.5",
72
41
  "inquirer": "^12.6.3",
73
42
  "ora": "^5.4.1",
74
43
  "semver": "^7.6.3",
75
44
  "zod": "^4.3.5"
76
- },
77
- "devDependencies": {
78
- "@types/cli-progress": "^3.11.0",
79
- "@types/fs-extra": "^11.0.4",
80
- "@types/inquirer": "^9.0.8",
81
- "@types/jest": "^30.0.0",
82
- "@types/node": "^24.5.2",
83
- "@types/semver": "^7.5.8",
84
- "jest": "^30.1.3",
85
- "ts-jest": "^29.4.4",
86
- "tsx": "^4.20.6",
87
- "typescript": "^5.9.2"
88
- },
89
- "optionalDependencies": {
90
- "tree-sitter": "^0.21.0",
91
- "tree-sitter-typescript": "^0.23.2"
92
45
  }
93
46
  }