aislop 0.5.0 → 0.6.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.
@@ -1,4 +1,4 @@
1
- import { n as ENGINE_INFO, t as APP_VERSION } from "./version-CxBRws3M.js";
1
+ import { n as ENGINE_INFO, t as APP_VERSION } from "./version-C2lM_2fE.js";
2
2
 
3
3
  //#region src/output/json.ts
4
4
  const buildJsonOutput = (results, scoreResult, fileCount, elapsedMs) => {
@@ -33,7 +33,7 @@ const getEngineLabel = (engine) => ENGINE_INFO[engine].label;
33
33
  * Application version — injected at build time by tsdown from package.json.
34
34
  * The fallback should always match the "version" field in package.json.
35
35
  */
36
- const APP_VERSION = "0.5.0";
36
+ const APP_VERSION = "0.6.0";
37
37
 
38
38
  //#endregion
39
39
  export { ENGINE_INFO as n, getEngineLabel as r, APP_VERSION as t };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aislop",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Stop AI slop from shipping. A unified code quality CLI that catches the lazy patterns AI coding tools leave behind.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -47,13 +47,13 @@
47
47
  ],
48
48
  "author": "heavykenny",
49
49
  "license": "MIT",
50
- "homepage": "https://github.com/heavykenny/aislop#readme",
50
+ "homepage": "https://github.com/scanaislop/aislop#readme",
51
51
  "repository": {
52
52
  "type": "git",
53
- "url": "git+https://github.com/heavykenny/aislop.git"
53
+ "url": "git+https://github.com/scanaislop/aislop.git"
54
54
  },
55
55
  "bugs": {
56
- "url": "https://github.com/heavykenny/aislop/issues"
56
+ "url": "https://github.com/scanaislop/aislop/issues"
57
57
  },
58
58
  "engines": {
59
59
  "node": ">=20"
@@ -70,8 +70,8 @@ const TOOL_DEFINITIONS = [
70
70
  const isWindows = process.platform === "win32";
71
71
  const withExecutableExtension = (name) => (isWindows ? `${name}.exe` : name);
72
72
 
73
- const info = (message) => console.log(`[aislop] ${message}`);
74
- const warn = (message) => console.warn(`[aislop] ${message}`);
73
+ const info = (message) => console.error(`[aislop] ${message}`);
74
+ const warn = (message) => console.error(`[aislop] ${message}`);
75
75
 
76
76
  const downloadFile = async (url, destination) => {
77
77
  const response = await fetch(url, {