vibecheck-ai 1.2.6 → 2.0.1
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 +104 -109
package/package.json
CHANGED
|
@@ -1,109 +1,104 @@
|
|
|
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
|
-
"@babel/parser": "^7.24.0",
|
|
55
|
-
"@babel/traverse": "^7.24.0",
|
|
56
|
-
"@babel/types": "^7.24.0",
|
|
57
|
-
"@clack/prompts": "^0.7.0",
|
|
58
|
-
"chalk": "^5.3.0",
|
|
59
|
-
"chokidar": "^3.6.0",
|
|
60
|
-
"ci-info": "^4.0.0",
|
|
61
|
-
"commander": "^12.0.0",
|
|
62
|
-
"conf": "^12.0.0",
|
|
63
|
-
"consola": "^3.2.0",
|
|
64
|
-
"cosmiconfig": "^9.0.0",
|
|
65
|
-
"debug": "^4.3.0",
|
|
66
|
-
"fast-glob": "^3.3.2",
|
|
67
|
-
"figlet": "^1.7.0",
|
|
68
|
-
"glob": "^10.3.0",
|
|
69
|
-
"gradient-string": "^2.0.2",
|
|
70
|
-
"ink": "^5.0.0",
|
|
71
|
-
"ink-spinner": "^5.0.0",
|
|
72
|
-
"listr2": "^8.0.0",
|
|
73
|
-
"open": "^10.1.0",
|
|
74
|
-
"ora": "^8.0.1",
|
|
75
|
-
"react": "^18.2.0",
|
|
76
|
-
"update-notifier": "^7.0.0",
|
|
77
|
-
"zod": "^3.25.0"
|
|
78
|
-
},
|
|
79
|
-
"optionalDependencies": {
|
|
80
|
-
"playwright": "^1.40.0"
|
|
81
|
-
},
|
|
82
|
-
"peerDependencies": {
|
|
83
|
-
"playwright": "^1.40.0"
|
|
84
|
-
},
|
|
85
|
-
"peerDependenciesMeta": {
|
|
86
|
-
"playwright": {
|
|
87
|
-
"optional": true
|
|
88
|
-
}
|
|
89
|
-
},
|
|
90
|
-
"devDependencies": {
|
|
91
|
-
"@
|
|
92
|
-
"@
|
|
93
|
-
"@
|
|
94
|
-
"@
|
|
95
|
-
"@
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
|
|
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.1",
|
|
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
|
+
"@babel/parser": "^7.24.0",
|
|
55
|
+
"@babel/traverse": "^7.24.0",
|
|
56
|
+
"@babel/types": "^7.24.0",
|
|
57
|
+
"@clack/prompts": "^0.7.0",
|
|
58
|
+
"chalk": "^5.3.0",
|
|
59
|
+
"chokidar": "^3.6.0",
|
|
60
|
+
"ci-info": "^4.0.0",
|
|
61
|
+
"commander": "^12.0.0",
|
|
62
|
+
"conf": "^12.0.0",
|
|
63
|
+
"consola": "^3.2.0",
|
|
64
|
+
"cosmiconfig": "^9.0.0",
|
|
65
|
+
"debug": "^4.3.0",
|
|
66
|
+
"fast-glob": "^3.3.2",
|
|
67
|
+
"figlet": "^1.7.0",
|
|
68
|
+
"glob": "^10.3.0",
|
|
69
|
+
"gradient-string": "^2.0.2",
|
|
70
|
+
"ink": "^5.0.0",
|
|
71
|
+
"ink-spinner": "^5.0.0",
|
|
72
|
+
"listr2": "^8.0.0",
|
|
73
|
+
"open": "^10.1.0",
|
|
74
|
+
"ora": "^8.0.1",
|
|
75
|
+
"react": "^18.2.0",
|
|
76
|
+
"update-notifier": "^7.0.0",
|
|
77
|
+
"zod": "^3.25.0"
|
|
78
|
+
},
|
|
79
|
+
"optionalDependencies": {
|
|
80
|
+
"playwright": "^1.40.0"
|
|
81
|
+
},
|
|
82
|
+
"peerDependencies": {
|
|
83
|
+
"playwright": "^1.40.0"
|
|
84
|
+
},
|
|
85
|
+
"peerDependenciesMeta": {
|
|
86
|
+
"playwright": {
|
|
87
|
+
"optional": true
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"devDependencies": {
|
|
91
|
+
"@types/figlet": "^1.5.0",
|
|
92
|
+
"@types/gradient-string": "^1.1.0",
|
|
93
|
+
"@types/node": "^20.10.0",
|
|
94
|
+
"@types/react": "^18.2.0",
|
|
95
|
+
"@types/update-notifier": "^6.0.0",
|
|
96
|
+
"execa": "^8.0.0",
|
|
97
|
+
"memfs": "^4.0.0",
|
|
98
|
+
"strip-ansi": "^7.1.0",
|
|
99
|
+
"tsup": "^8.0.0",
|
|
100
|
+
"tsx": "^4.7.0",
|
|
101
|
+
"typescript": "^5.3.0",
|
|
102
|
+
"vitest": "^1.0.0"
|
|
103
|
+
}
|
|
104
|
+
}
|