-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.7 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
{
"name": "sntnl-cli",
"version": "4.0.0",
"description": "Sentinel Security Intelligence — SAST, supply chain, threat intel, and Skills/MCP for AI coding agents.",
"main": "dist/cli/main.js",
"bin": {
"sntnl": "dist/cli/main.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/cli/main.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"pretest": "npm run build",
"postinstall": "node -e \"try{var m=require('./dist/cli/install-skills');m.installSkillsCommand([])}catch(e){}\""
},
"keywords": [
"security",
"sast",
"supply-chain",
"scanner",
"cli",
"audit",
"secrets-detection",
"devsecops"
],
"license": "BUSSL-1.1",
"author": "Javier Astaroth <javier20dev25@sentinel.security>",
"repository": {
"type": "git",
"url": "git+https://github.com/javier20dev25/sentinel-cli.git"
},
"bugs": {
"url": "https://github.com/javier20dev25/sentinel-cli/issues"
},
"homepage": "https://sentinel-psi-nine.vercel.app/cli",
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"src/",
"skills/",
"docs/",
"install-skills.sh",
"install-skills.ps1",
"README.md",
"LICENSE"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.100.1",
"@google/generative-ai": "^0.24.1",
"acorn": "^8.16.0",
"acorn-walk": "^8.3.5",
"better-sqlite3": "^12.9.0",
"commander": "^12.1.0",
"dotenv": "^17.4.2",
"openai": "^6.39.1",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"typescript": "^5",
"vitest": "^4.1.7"
}
}