-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.46 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.46 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
59
60
61
62
63
{
"name": "zero-ai-trace-framework",
"version": "1.0.0",
"description": "A strict framework for controlling ChatGPT and other LLMs to produce authentic and undetectable content",
"main": "src/framework.js",
"bin": {
"zero-ai-trace": "./bin/cli.js"
},
"scripts": {
"test": "node tests/run-tests.js",
"validate": "node scripts/validate-framework.js",
"benchmark": "node scripts/benchmark.js",
"lint": "eslint .",
"format": "prettier --write .",
"build": "node scripts/build.js",
"docs": "node scripts/generate-docs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Darkfall48/Zero-AI-Trace-Framework.git"
},
"keywords": [
"ai",
"llm",
"chatgpt",
"claude",
"prompt-engineering",
"anti-detection",
"humanization",
"framework",
"prompt",
"natural-language"
],
"author": "Darkfall48",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Darkfall48/Zero-AI-Trace-Framework/issues"
},
"homepage": "https://github.com/Darkfall48/Zero-AI-Trace-Framework#readme",
"devDependencies": {
"eslint": "^8.50.0",
"prettier": "^3.0.3",
"jest": "^29.7.0"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"fs-extra": "^11.1.1",
"ora": "^5.4.1"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"src/",
"templates/",
"scripts/",
"README.md",
"README_FR.md",
"LICENSE",
"CHANGELOG.md"
]
}