-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.61 KB
/
package.json
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
70
71
72
73
74
75
{
"name": "prompt-manners",
"type": "module",
"version": "0.0.11",
"description": "A prompt injection mitigation library",
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "18.19.1"
},
"repository": "github.com/aaronclong/prompt-manners",
"bugs": {
"url": "https://github.com/aaronclong/prompt-manners/issues"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"lint": "eslint ./src/",
"test": "ava",
"test:ci": "c8 -r text -r json-summary ava"
},
"main": "dist/index.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"files": [
"dist/*.js",
"dist/*.js.map",
"dist/*.cjs",
"dist/*.cjs.map",
"dist/*.mjs",
"dist/*.mjs.map",
"dist/*.d.ts"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsimp"
]
},
"keywords": [
"llm",
"ai",
"prompt-injection",
"injection",
"security",
"security-tool"
],
"author": "Aaron Long",
"license": "Apache License 2.0",
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@rollup/plugin-typescript": "^11.1.6",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"ava": "^6.1.1",
"c8": "^9.1.0",
"rollup": "^4.12.0",
"tsimp": "^2.0.11",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"typescript-eslint": "^7.0.1"
},
"dependencies": {
"tokenizers": "^0.13.3"
}
}