prodlint 0.6.0 → 0.7.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/LICENSE +21 -21
- package/README.md +253 -252
- package/action.yml +152 -152
- package/dist/cli.js +718 -23
- package/dist/index.js +718 -23
- package/dist/mcp.js +718 -23
- package/package.json +83 -83
package/package.json
CHANGED
|
@@ -1,83 +1,83 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "prodlint",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "The linter for vibe-coded apps — catch what AI coding tools miss",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": "prodlint contributors",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "https://github.com/prodlint/prodlint"
|
|
11
|
-
},
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/prodlint/prodlint/issues"
|
|
14
|
-
},
|
|
15
|
-
"homepage": "https://prodlint.com",
|
|
16
|
-
"bin": {
|
|
17
|
-
"prodlint": "./dist/cli.js",
|
|
18
|
-
"prodlint-mcp": "./dist/mcp.js"
|
|
19
|
-
},
|
|
20
|
-
"main": "./dist/index.js",
|
|
21
|
-
"types": "./dist/index.d.ts",
|
|
22
|
-
"exports": {
|
|
23
|
-
".": {
|
|
24
|
-
"import": "./dist/index.js",
|
|
25
|
-
"types": "./dist/index.d.ts"
|
|
26
|
-
},
|
|
27
|
-
"./mcp": {
|
|
28
|
-
"import": "./dist/mcp.js"
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
"files": [
|
|
32
|
-
"dist/**/*.js",
|
|
33
|
-
"dist/**/*.d.ts",
|
|
34
|
-
"action.yml"
|
|
35
|
-
],
|
|
36
|
-
"scripts": {
|
|
37
|
-
"build": "tsup",
|
|
38
|
-
"dev": "tsup --watch",
|
|
39
|
-
"test": "vitest run",
|
|
40
|
-
"test:watch": "vitest",
|
|
41
|
-
"lint": "node dist/cli.js .",
|
|
42
|
-
"prepublishOnly": "npm run build"
|
|
43
|
-
},
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"@babel/parser": "^7.29.0",
|
|
46
|
-
"@babel/types": "^7.29.0",
|
|
47
|
-
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
48
|
-
"fast-glob": "^3.3.3",
|
|
49
|
-
"picocolors": "^1.1.1",
|
|
50
|
-
"zod": "^4.3.6"
|
|
51
|
-
},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@types/node": "^25.2.3",
|
|
54
|
-
"tsup": "^8.4.0",
|
|
55
|
-
"typescript": "^5.7.0",
|
|
56
|
-
"vitest": "^3.0.0"
|
|
57
|
-
},
|
|
58
|
-
"engines": {
|
|
59
|
-
"node": ">=18"
|
|
60
|
-
},
|
|
61
|
-
"keywords": [
|
|
62
|
-
"lint",
|
|
63
|
-
"linter",
|
|
64
|
-
"security",
|
|
65
|
-
"ai",
|
|
66
|
-
"ai-code",
|
|
67
|
-
"vibe-coding",
|
|
68
|
-
"production-readiness",
|
|
69
|
-
"code-quality",
|
|
70
|
-
"code-scanner",
|
|
71
|
-
"next.js",
|
|
72
|
-
"react",
|
|
73
|
-
"typescript",
|
|
74
|
-
"static-analysis",
|
|
75
|
-
"cli",
|
|
76
|
-
"scanner",
|
|
77
|
-
"mcp",
|
|
78
|
-
"mcp-server",
|
|
79
|
-
"cursor",
|
|
80
|
-
"copilot",
|
|
81
|
-
"devtools"
|
|
82
|
-
]
|
|
83
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "prodlint",
|
|
3
|
+
"version": "0.7.1",
|
|
4
|
+
"description": "The linter for vibe-coded apps — catch what AI coding tools miss",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "prodlint contributors",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/prodlint/prodlint"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/prodlint/prodlint/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://prodlint.com",
|
|
16
|
+
"bin": {
|
|
17
|
+
"prodlint": "./dist/cli.js",
|
|
18
|
+
"prodlint-mcp": "./dist/mcp.js"
|
|
19
|
+
},
|
|
20
|
+
"main": "./dist/index.js",
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"import": "./dist/index.js",
|
|
25
|
+
"types": "./dist/index.d.ts"
|
|
26
|
+
},
|
|
27
|
+
"./mcp": {
|
|
28
|
+
"import": "./dist/mcp.js"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist/**/*.js",
|
|
33
|
+
"dist/**/*.d.ts",
|
|
34
|
+
"action.yml"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsup",
|
|
38
|
+
"dev": "tsup --watch",
|
|
39
|
+
"test": "vitest run",
|
|
40
|
+
"test:watch": "vitest",
|
|
41
|
+
"lint": "node dist/cli.js .",
|
|
42
|
+
"prepublishOnly": "npm run build"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@babel/parser": "^7.29.0",
|
|
46
|
+
"@babel/types": "^7.29.0",
|
|
47
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
48
|
+
"fast-glob": "^3.3.3",
|
|
49
|
+
"picocolors": "^1.1.1",
|
|
50
|
+
"zod": "^4.3.6"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/node": "^25.2.3",
|
|
54
|
+
"tsup": "^8.4.0",
|
|
55
|
+
"typescript": "^5.7.0",
|
|
56
|
+
"vitest": "^3.0.0"
|
|
57
|
+
},
|
|
58
|
+
"engines": {
|
|
59
|
+
"node": ">=18"
|
|
60
|
+
},
|
|
61
|
+
"keywords": [
|
|
62
|
+
"lint",
|
|
63
|
+
"linter",
|
|
64
|
+
"security",
|
|
65
|
+
"ai",
|
|
66
|
+
"ai-code",
|
|
67
|
+
"vibe-coding",
|
|
68
|
+
"production-readiness",
|
|
69
|
+
"code-quality",
|
|
70
|
+
"code-scanner",
|
|
71
|
+
"next.js",
|
|
72
|
+
"react",
|
|
73
|
+
"typescript",
|
|
74
|
+
"static-analysis",
|
|
75
|
+
"cli",
|
|
76
|
+
"scanner",
|
|
77
|
+
"mcp",
|
|
78
|
+
"mcp-server",
|
|
79
|
+
"cursor",
|
|
80
|
+
"copilot",
|
|
81
|
+
"devtools"
|
|
82
|
+
]
|
|
83
|
+
}
|