vibecheck-ai 1.2.5 → 2.0.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.
- package/README.md +491 -491
- package/dist/index.js +779 -7026
- package/dist/index.js.map +1 -1
- package/package.json +109 -109
package/package.json
CHANGED
|
@@ -1,109 +1,109 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "vibecheck-ai",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Premium CLI for VibeCheck - Hallucination prevention for AI-assisted development",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"vibecheck": "dist/index.js"
|
|
8
|
-
},
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"import": "./dist/index.js",
|
|
12
|
-
"types": "./dist/index.d.ts"
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": ">=18.0.0"
|
|
17
|
-
},
|
|
18
|
-
"files": [
|
|
19
|
-
"dist"
|
|
20
|
-
],
|
|
21
|
-
"keywords": [
|
|
22
|
-
"vibecheck",
|
|
23
|
-
"ai",
|
|
24
|
-
"hallucination",
|
|
25
|
-
"validation",
|
|
26
|
-
"linter",
|
|
27
|
-
"cli",
|
|
28
|
-
"devtools",
|
|
29
|
-
"code-quality",
|
|
30
|
-
"typescript",
|
|
31
|
-
"cursor",
|
|
32
|
-
"copilot"
|
|
33
|
-
],
|
|
34
|
-
"author": "VibeCheck Team",
|
|
35
|
-
"license": "MIT",
|
|
36
|
-
"repository": {
|
|
37
|
-
"type": "git",
|
|
38
|
-
"url": "git+https://github.com/vibecheckai/vibecheck.git"
|
|
39
|
-
},
|
|
40
|
-
"homepage": "https://vibecheckai.dev",
|
|
41
|
-
"bugs": {
|
|
42
|
-
"url": "https://github.com/vibecheckai/vibecheck/issues"
|
|
43
|
-
},
|
|
44
|
-
"scripts": {
|
|
45
|
-
"build": "tsup",
|
|
46
|
-
"dev": "tsup --watch",
|
|
47
|
-
"start": "node dist/index.js",
|
|
48
|
-
"check-types": "echo 'Skipping type check - depends on @vibecheck/core which has pre-existing type issues' && exit 0",
|
|
49
|
-
"test": "vitest run",
|
|
50
|
-
"test:watch": "vitest",
|
|
51
|
-
"prepublishOnly": "pnpm run build"
|
|
52
|
-
},
|
|
53
|
-
"dependencies": {
|
|
54
|
-
"@repo/shared-utils": "workspace:*",
|
|
55
|
-
"@babel/parser": "^7.24.0",
|
|
56
|
-
"@babel/traverse": "^7.24.0",
|
|
57
|
-
"@babel/types": "^7.24.0",
|
|
58
|
-
"@clack/prompts": "^0.7.0",
|
|
59
|
-
"chalk": "^5.3.0",
|
|
60
|
-
"chokidar": "^3.6.0",
|
|
61
|
-
"ci-info": "^4.0.0",
|
|
62
|
-
"commander": "^12.0.0",
|
|
63
|
-
"conf": "^12.0.0",
|
|
64
|
-
"consola": "^3.2.0",
|
|
65
|
-
"cosmiconfig": "^9.0.0",
|
|
66
|
-
"debug": "^4.3.0",
|
|
67
|
-
"fast-glob": "^3.3.2",
|
|
68
|
-
"figlet": "^1.7.0",
|
|
69
|
-
"glob": "^10.3.0",
|
|
70
|
-
"gradient-string": "^2.0.2",
|
|
71
|
-
"ink": "^5.0.0",
|
|
72
|
-
"ink-spinner": "^5.0.0",
|
|
73
|
-
"listr2": "^8.0.0",
|
|
74
|
-
"open": "^10.1.0",
|
|
75
|
-
"ora": "^8.0.1",
|
|
76
|
-
"react": "^18.2.0",
|
|
77
|
-
"update-notifier": "^7.0.0",
|
|
78
|
-
"zod": "^3.25.0"
|
|
79
|
-
},
|
|
80
|
-
"optionalDependencies": {
|
|
81
|
-
"playwright": "^1.40.0"
|
|
82
|
-
},
|
|
83
|
-
"peerDependencies": {
|
|
84
|
-
"playwright": "^1.40.0"
|
|
85
|
-
},
|
|
86
|
-
"peerDependenciesMeta": {
|
|
87
|
-
"playwright": {
|
|
88
|
-
"optional": true
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
|
-
"devDependencies": {
|
|
92
|
-
"@repo/typescript-config": "workspace:*",
|
|
93
|
-
"@vibecheck/core": "workspace:*",
|
|
94
|
-
"@vibecheck/isl-parser": "workspace:*",
|
|
95
|
-
"@repo/shared-types": "workspace:*",
|
|
96
|
-
"@types/figlet": "^1.5.0",
|
|
97
|
-
"@types/gradient-string": "^1.1.0",
|
|
98
|
-
"@types/node": "^20.10.0",
|
|
99
|
-
"@types/react": "^18.2.0",
|
|
100
|
-
"@types/update-notifier": "^6.0.0",
|
|
101
|
-
"execa": "^8.0.0",
|
|
102
|
-
"memfs": "^4.0.0",
|
|
103
|
-
"strip-ansi": "^7.1.0",
|
|
104
|
-
"tsup": "^8.0.0",
|
|
105
|
-
"tsx": "^4.7.0",
|
|
106
|
-
"typescript": "^5.3.0",
|
|
107
|
-
"vitest": "^1.0.0"
|
|
108
|
-
}
|
|
109
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "vibecheck-ai",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Premium CLI for VibeCheck - Hallucination prevention for AI-assisted development",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"vibecheck": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=18.0.0"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"keywords": [
|
|
22
|
+
"vibecheck",
|
|
23
|
+
"ai",
|
|
24
|
+
"hallucination",
|
|
25
|
+
"validation",
|
|
26
|
+
"linter",
|
|
27
|
+
"cli",
|
|
28
|
+
"devtools",
|
|
29
|
+
"code-quality",
|
|
30
|
+
"typescript",
|
|
31
|
+
"cursor",
|
|
32
|
+
"copilot"
|
|
33
|
+
],
|
|
34
|
+
"author": "VibeCheck Team",
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+https://github.com/vibecheckai/vibecheck.git"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://vibecheckai.dev",
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/vibecheckai/vibecheck/issues"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsup",
|
|
46
|
+
"dev": "tsup --watch",
|
|
47
|
+
"start": "node dist/index.js",
|
|
48
|
+
"check-types": "echo 'Skipping type check - depends on @vibecheck/core which has pre-existing type issues' && exit 0",
|
|
49
|
+
"test": "vitest run",
|
|
50
|
+
"test:watch": "vitest",
|
|
51
|
+
"prepublishOnly": "pnpm run build"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@repo/shared-utils": "workspace:*",
|
|
55
|
+
"@babel/parser": "^7.24.0",
|
|
56
|
+
"@babel/traverse": "^7.24.0",
|
|
57
|
+
"@babel/types": "^7.24.0",
|
|
58
|
+
"@clack/prompts": "^0.7.0",
|
|
59
|
+
"chalk": "^5.3.0",
|
|
60
|
+
"chokidar": "^3.6.0",
|
|
61
|
+
"ci-info": "^4.0.0",
|
|
62
|
+
"commander": "^12.0.0",
|
|
63
|
+
"conf": "^12.0.0",
|
|
64
|
+
"consola": "^3.2.0",
|
|
65
|
+
"cosmiconfig": "^9.0.0",
|
|
66
|
+
"debug": "^4.3.0",
|
|
67
|
+
"fast-glob": "^3.3.2",
|
|
68
|
+
"figlet": "^1.7.0",
|
|
69
|
+
"glob": "^10.3.0",
|
|
70
|
+
"gradient-string": "^2.0.2",
|
|
71
|
+
"ink": "^5.0.0",
|
|
72
|
+
"ink-spinner": "^5.0.0",
|
|
73
|
+
"listr2": "^8.0.0",
|
|
74
|
+
"open": "^10.1.0",
|
|
75
|
+
"ora": "^8.0.1",
|
|
76
|
+
"react": "^18.2.0",
|
|
77
|
+
"update-notifier": "^7.0.0",
|
|
78
|
+
"zod": "^3.25.0"
|
|
79
|
+
},
|
|
80
|
+
"optionalDependencies": {
|
|
81
|
+
"playwright": "^1.40.0"
|
|
82
|
+
},
|
|
83
|
+
"peerDependencies": {
|
|
84
|
+
"playwright": "^1.40.0"
|
|
85
|
+
},
|
|
86
|
+
"peerDependenciesMeta": {
|
|
87
|
+
"playwright": {
|
|
88
|
+
"optional": true
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"devDependencies": {
|
|
92
|
+
"@repo/typescript-config": "workspace:*",
|
|
93
|
+
"@vibecheck/core": "workspace:*",
|
|
94
|
+
"@vibecheck/isl-parser": "workspace:*",
|
|
95
|
+
"@repo/shared-types": "workspace:*",
|
|
96
|
+
"@types/figlet": "^1.5.0",
|
|
97
|
+
"@types/gradient-string": "^1.1.0",
|
|
98
|
+
"@types/node": "^20.10.0",
|
|
99
|
+
"@types/react": "^18.2.0",
|
|
100
|
+
"@types/update-notifier": "^6.0.0",
|
|
101
|
+
"execa": "^8.0.0",
|
|
102
|
+
"memfs": "^4.0.0",
|
|
103
|
+
"strip-ansi": "^7.1.0",
|
|
104
|
+
"tsup": "^8.0.0",
|
|
105
|
+
"tsx": "^4.7.0",
|
|
106
|
+
"typescript": "^5.3.0",
|
|
107
|
+
"vitest": "^1.0.0"
|
|
108
|
+
}
|
|
109
|
+
}
|