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.
Files changed (4) hide show
  1. package/README.md +491 -491
  2. package/dist/index.js +779 -7026
  3. package/dist/index.js.map +1 -1
  4. package/package.json +104 -109
package/package.json CHANGED
@@ -1,109 +1,104 @@
1
- {
2
- "name": "vibecheck-ai",
3
- "version": "1.2.6",
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
- "@repo/shared-utils": "workspace:*",
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.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
+ }