-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.34 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.34 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
{
"name": "context-hound",
"version": "2.0.0",
"description": "Developer-first prompt-injection scanner for CI and local use",
"main": "dist/cli.js",
"exports": {
".": "./dist/cli.js",
"./runtime": "./dist/runtime/index.js"
},
"bin": {
"hound": "dist/cli.js"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IulianVOStrut/ContextHound.git"
},
"homepage": "https://github.com/IulianVOStrut/ContextHound#readme",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"hound": "node dist/cli.js scan",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src",
"benchmark": "npm run build && node scripts/benchmark.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"prompt-injection",
"security",
"llm",
"ai-safety",
"cli"
],
"author": "IulianVOStrut",
"license": "MIT",
"dependencies": {
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"fast-glob": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"jest": "^30.2.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
}
}