@rosh100yx/outlier 0.4.1 → 0.4.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/bin/outlier.js +2312 -0
- package/package.json +4 -4
- package/src/cli.ts +2 -2
- package/bin/outlier +0 -0
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rosh100yx/outlier",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "AI Code Governance & Capability Auditing for the Terminal. Measures AI reliance, context waste, and enforces local CI/CD policies.",
|
|
5
5
|
"bin": {
|
|
6
|
-
"outlier": "bin/outlier"
|
|
6
|
+
"outlier": "bin/outlier.js"
|
|
7
7
|
},
|
|
8
8
|
"files": [
|
|
9
|
-
"bin/outlier",
|
|
9
|
+
"bin/outlier.js",
|
|
10
10
|
"src",
|
|
11
11
|
"data"
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
|
-
"build": "bun build ./src/cli.ts --
|
|
14
|
+
"build": "bun build ./src/cli.ts --target=node --outfile bin/outlier.js",
|
|
15
15
|
"test": "bun test",
|
|
16
16
|
"start": "bun run src/cli.ts"
|
|
17
17
|
},
|
package/src/cli.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
#!/usr/bin/env
|
|
2
|
-
import { intro, outro, select, spinner, isCancel, cancel, note, text } from '@clack/prompts';
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { intro, outro, select, spinner, isCancel, cancel, note, text, confirm } from '@clack/prompts';
|
|
3
3
|
import pc from 'picocolors';
|
|
4
4
|
import { getAuthorshipStats } from './git';
|
|
5
5
|
import { getCarbonStats } from './carbon';
|
package/bin/outlier
DELETED
|
Binary file
|