vibecop 0.1.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/LICENSE +21 -0
- package/README.md +257 -0
- package/dist/ast-grep-napi.darwin-arm64-q04mnpgp.node +0 -0
- package/dist/cli.js +18020 -0
- package/package.json +86 -0
package/package.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vibecop",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "AI code quality toolkit — deterministic linter for the AI coding era",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"vibecop": "./dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "bun build src/cli.ts --outdir dist --target node",
|
|
11
|
+
"build:action": "npx ncc build src/action/main.ts -o dist/action --source-map --license licenses.txt",
|
|
12
|
+
"test": "bun test",
|
|
13
|
+
"lint": "bunx biome check",
|
|
14
|
+
"typecheck": "bunx tsc --noEmit",
|
|
15
|
+
"prepublishOnly": "bun run lint && bun run typecheck && bun test && bun run build"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE"
|
|
21
|
+
],
|
|
22
|
+
"keywords": [
|
|
23
|
+
"linter",
|
|
24
|
+
"ai",
|
|
25
|
+
"code-quality",
|
|
26
|
+
"ast",
|
|
27
|
+
"static-analysis",
|
|
28
|
+
"typescript",
|
|
29
|
+
"javascript",
|
|
30
|
+
"python",
|
|
31
|
+
"github-action",
|
|
32
|
+
"code-review",
|
|
33
|
+
"vibe-coding",
|
|
34
|
+
"ai-code-review",
|
|
35
|
+
"eslint",
|
|
36
|
+
"ast-grep",
|
|
37
|
+
"developer-tools"
|
|
38
|
+
],
|
|
39
|
+
"author": "Bhavya Bhushan (https://github.com/bhvbhushan)",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"homepage": "https://github.com/bhvbhushan/vibecop#readme",
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/bhvbhushan/vibecop/issues"
|
|
44
|
+
},
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/bhvbhushan/vibecop.git"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=20"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@actions/core": "^3.0.0",
|
|
54
|
+
"@actions/github": "^9.0.0",
|
|
55
|
+
"@ast-grep/lang-python": "^0.0.6",
|
|
56
|
+
"@ast-grep/napi": "^0.42.0",
|
|
57
|
+
"commander": "^13.1.0",
|
|
58
|
+
"yaml": "^2.7.1",
|
|
59
|
+
"zod": "^3.24.4"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@types/node": "^22.14.0",
|
|
63
|
+
"@types/sarif": "^2.1.7",
|
|
64
|
+
"@vercel/ncc": "^0.38.4",
|
|
65
|
+
"bun-types": "^1.3.11",
|
|
66
|
+
"typescript": "^5.8.3"
|
|
67
|
+
},
|
|
68
|
+
"contributes": {
|
|
69
|
+
"problemMatchers": [
|
|
70
|
+
{
|
|
71
|
+
"name": "vibecop",
|
|
72
|
+
"owner": "vibecop",
|
|
73
|
+
"fileLocation": ["relative", "${workspaceFolder}"],
|
|
74
|
+
"pattern": {
|
|
75
|
+
"regexp": "^(.+):(\\d+):(\\d+):\\s+(error|warning|info)\\s+(.+)\\s+\\[(.+)\\]$",
|
|
76
|
+
"file": 1,
|
|
77
|
+
"line": 2,
|
|
78
|
+
"column": 3,
|
|
79
|
+
"severity": 4,
|
|
80
|
+
"message": 5,
|
|
81
|
+
"code": 6
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
}
|