@content-reviewer/cli 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +10 -10
package/dist/index.js CHANGED
@@ -42,7 +42,7 @@ var import_consola = require("consola");
42
42
  // package.json
43
43
  var package_default = {
44
44
  name: "@content-reviewer/cli",
45
- version: "0.0.1",
45
+ version: "0.0.2",
46
46
  description: "CLI tool for reviewing written content using LLMs",
47
47
  bin: {
48
48
  "content-review": "./dist/index.js"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@content-reviewer/cli",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "CLI tool for reviewing written content using LLMs",
5
5
  "bin": {
6
6
  "content-review": "./dist/index.js"
@@ -10,12 +10,6 @@
10
10
  "files": [
11
11
  "dist"
12
12
  ],
13
- "scripts": {
14
- "build": "tsup src/index.ts --format cjs --dts --clean",
15
- "dev": "tsup src/index.ts --format cjs --dts --watch",
16
- "test": "vitest run",
17
- "clean": "rm -rf dist"
18
- },
19
13
  "keywords": [
20
14
  "ai",
21
15
  "llm",
@@ -43,16 +37,22 @@
43
37
  "access": "public"
44
38
  },
45
39
  "dependencies": {
46
- "@content-reviewer/core": "workspace:*",
47
40
  "commander": "^14.0.2",
48
41
  "consola": "^3.4.2",
49
42
  "cosmiconfig": "^9.0.0",
50
- "picocolors": "^1.1.1"
43
+ "picocolors": "^1.1.1",
44
+ "@content-reviewer/core": "0.0.2"
51
45
  },
52
46
  "devDependencies": {
53
47
  "@types/node": "^24.10.1",
54
48
  "tsup": "^8.5.1",
55
49
  "typescript": "^5.9.3",
56
50
  "vitest": "^4.0.9"
51
+ },
52
+ "scripts": {
53
+ "build": "tsup src/index.ts --format cjs --dts --clean",
54
+ "dev": "tsup src/index.ts --format cjs --dts --watch",
55
+ "test": "vitest run",
56
+ "clean": "rm -rf dist"
57
57
  }
58
- }
58
+ }