-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.84 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "firmis-scanner",
"version": "1.5.0",
"description": "Security scanner for AI agents — detect threats in MCP servers, Claude skills, Codex plugins, Cursor extensions, and 5 more platforms. 269 rules across 26 threat categories.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"firmis": "dist/cli/index.js",
"firmis-mcp": "dist/mcp/index.js"
},
"files": [
"dist",
"!dist/**/*.js.map",
"!dist/**/*.d.ts.map",
"rules",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && find dist -name '*.map' -delete",
"check-package": "npm pack --dry-run 2>&1 | grep -c '\\.map' && echo 'ERROR: Source maps in package!' && exit 1 || echo 'OK: No source maps'",
"firmis": "node --loader ts-node/esm src/cli/index.ts"
},
"keywords": [
"security",
"ai-agents",
"claude",
"mcp",
"codex",
"cursor",
"crewai",
"autogpt",
"openclaw",
"nanobot",
"supabase",
"scanner",
"threat-detection",
"malware",
"mcp-server",
"mcp-security",
"ai-security",
"agent-security",
"tool-poisoning",
"prompt-injection",
"credential-harvesting",
"sast",
"devsecops",
"supply-chain-security"
],
"author": "Firmis Labs",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/firmislabs/firmis-scanner.git"
},
"bugs": {
"url": "https://github.com/firmislabs/firmis-scanner/issues"
},
"homepage": "https://firmislabs.com",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@babel/parser": "^7.24.0",
"@babel/traverse": "^7.24.0",
"@babel/types": "^7.24.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"@pgsql/types": "^17.6.2",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"fast-glob": "^3.3.2",
"js-yaml": "^4.1.1",
"ora": "^8.0.1",
"pgsql-parser": "^17.9.11",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"prettier": "^3.2.0",
"ts-node": "^10.9.0",
"typescript": "^5.4.0",
"vitest": "^4.0.18"
}
}