@aiready/pattern-detect 0.9.5 → 0.9.6

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/cli.mjs +0 -0
  2. package/package.json +12 -13
package/dist/cli.mjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiready/pattern-detect",
3
- "version": "0.9.5",
3
+ "version": "0.9.6",
4
4
  "description": "Semantic duplicate pattern detection for AI-generated code - finds similar implementations that waste AI context tokens",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -15,15 +15,6 @@
15
15
  "import": "./dist/index.mjs"
16
16
  }
17
17
  },
18
- "scripts": {
19
- "build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts",
20
- "dev": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --watch",
21
- "test": "vitest run",
22
- "lint": "eslint src",
23
- "clean": "rm -rf dist",
24
- "prepublishOnly": "pnpm build",
25
- "release": "pnpm build && pnpm publish --no-git-checks"
26
- },
27
18
  "keywords": [
28
19
  "aiready",
29
20
  "duplicate-detection",
@@ -52,9 +43,9 @@
52
43
  "url": "https://github.com/caopengau/aiready-pattern-detect/issues"
53
44
  },
54
45
  "dependencies": {
55
- "@aiready/core": "workspace:*",
56
46
  "commander": "^14.0.0",
57
- "chalk": "^5.3.0"
47
+ "chalk": "^5.3.0",
48
+ "@aiready/core": "0.7.2"
58
49
  },
59
50
  "devDependencies": {
60
51
  "tsup": "^8.3.5",
@@ -71,5 +62,13 @@
71
62
  },
72
63
  "publishConfig": {
73
64
  "access": "public"
65
+ },
66
+ "scripts": {
67
+ "build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts",
68
+ "dev": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --watch",
69
+ "test": "vitest run",
70
+ "lint": "eslint src",
71
+ "clean": "rm -rf dist",
72
+ "release": "pnpm build && pnpm publish --no-git-checks"
74
73
  }
75
- }
74
+ }