-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.03 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
{
"name": "@ducnmm/dotmask",
"version": "1.0.7",
"type": "module",
"description": "Transparent AI secret masking for macOS. Runs a local HTTPS proxy that replaces real API keys with format-identical fakes before they reach the AI, then restores them in tool-call responses.",
"bin": {
"dotmask": "bin/dotmask.js",
"dm": "bin/dotmask.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"pretest": "npm run build",
"test": "node --test test/*.test.js",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"bin"
],
"keywords": [
"env",
"secrets",
"ai-safe",
"dotenv",
"security",
"keychain",
"macos",
"cli",
"claude-code",
"codex",
"copilot",
"proxy"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ducnmm/dotmask"
},
"homepage": "https://github.com/ducnmm/dotmask",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.4.0"
}
}