-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.42 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.42 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "skillrx",
"version": "0.9.0",
"description": "Skill RX is a security scanner for AI agent skills and plugins. Scans Claude Code, Codex, Cursor, Aider, Continue.dev, MCP servers and 40+ other agent ecosystems before you install them.",
"type": "module",
"bin": {
"skillrx": "bin/skillrx.js"
},
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"engines": {
"node": ">=18"
},
"keywords": [
"ai-agent",
"security",
"static-analysis",
"scanner",
"claude-code",
"codex",
"cursor",
"aider",
"continue",
"mcp",
"skills",
"plugin",
"prompt-injection"
],
"homepage": "https://github.com/felipeinf/skillrx#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/felipeinf/skillrx.git"
},
"bugs": {
"url": "https://github.com/felipeinf/skillrx/issues"
},
"author": "felipeinf <100pipeee@gmail.com>",
"license": "MIT",
"files": [
"bin",
"src",
".claude-plugin",
"img",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test test/*.test.js",
"test:network": "SKILLRX_NETWORK_TESTS=1 node --test test/real-repos.test.js"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ora": "^8.2.0",
"p-limit": "^6.1.0",
"simple-git": "^3.27.0",
"tmp": "^0.2.3"
}
}