-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 804 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 804 Bytes
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
{
"name": "glyphguard",
"version": "1.0.0",
"description": "Detect, decode and strip invisible / dangerous Unicode (ASCII-smuggling tag chars, zero-width, bidi Trojan Source, variation-selector covert channels, homoglyphs) in text headed to or from an LLM.",
"type": "module",
"bin": {
"glyphguard": "bin/cli.js"
},
"exports": {
".": "./src/index.js"
},
"main": "src/index.js",
"files": [
"src",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test"
},
"keywords": [
"llm",
"prompt-injection",
"ascii-smuggling",
"unicode",
"security",
"zero-width",
"trojan-source",
"homoglyph",
"sanitize",
"ai-security"
],
"author": "Ayubjon",
"license": "MIT",
"engines": {
"node": ">=18"
}
}