-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "pkgtruth",
"version": "0.1.2",
"description": "Ground truth about npm packages for AI coding agents. Detects hallucinated and slopsquatted dependencies before they get installed.",
"keywords": [
"mcp",
"mcp-server",
"slopsquatting",
"supply-chain",
"npm",
"security",
"ai-agent",
"hallucination",
"dependencies"
],
"license": "MIT",
"author": "hxckya",
"homepage": "https://github.com/hxckya/pkgtruth#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hxckya/pkgtruth.git"
},
"bugs": {
"url": "https://github.com/hxckya/pkgtruth/issues"
},
"type": "module",
"bin": {
"pkgtruth": "bin/pkgtruth.js"
},
"main": "src/index.js",
"engines": {
"node": ">=20"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test test/*.test.js",
"start": "node bin/pkgtruth.js",
"test:online": "PKGTRUTH_TEST_ONLINE=1 node --test test/*.test.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"zod": "^4.5.4"
},
"mcpName": "io.github.hxckya/pkgtruth"
}