@aictrl/hush 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@aictrl/hush",
3
+ "version": "0.1.0",
4
+ "description": "Hush: A Semantic Security Gateway for AI Agents. Redacts PII from prompts and tool outputs locally before they hit the cloud.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "hush": "dist/cli.js"
10
+ },
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsc",
16
+ "start": "node dist/cli.js",
17
+ "dev": "tsx src/cli.ts",
18
+ "test": "vitest run --coverage",
19
+ "test:e2e": "./scripts/e2e-opencode.sh",
20
+ "test:watch": "vitest",
21
+ "lint": "eslint src/**/*.ts",
22
+ "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\""
23
+ },
24
+ "keywords": [
25
+ "mcp",
26
+ "ai",
27
+ "security",
28
+ "redaction",
29
+ "pii",
30
+ "gateway"
31
+ ],
32
+ "author": "AICtrl Team",
33
+ "license": "Apache-2.0",
34
+ "dependencies": {
35
+ "@modelcontextprotocol/sdk": "^1.27.1",
36
+ "blessed": "^0.1.81",
37
+ "blessed-contrib": "^4.11.0",
38
+ "cors": "^2.8.6",
39
+ "dotenv": "^17.3.1",
40
+ "express": "^5.2.1",
41
+ "pino": "^10.3.1",
42
+ "pino-pretty": "^13.1.3"
43
+ },
44
+ "devDependencies": {
45
+ "@types/blessed": "^0.1.27",
46
+ "@types/cors": "^2.8.19",
47
+ "@types/express": "^5.0.6",
48
+ "@types/node": "^25.3.3",
49
+ "@types/supertest": "^7.2.0",
50
+ "@vitest/coverage-v8": "^4.0.18",
51
+ "nock": "^14.0.11",
52
+ "supertest": "^7.2.2",
53
+ "tsx": "^4.19.2",
54
+ "typescript": "^5.9.3",
55
+ "vitest": "^4.0.18"
56
+ }
57
+ }