-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.16 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
{
"name": "humanizerai",
"version": "1.0.0",
"description": "CLI for HumanizerAI - Detect and humanize AI-generated text from the command line",
"main": "dist/index.js",
"bin": {
"humanizerai": "./dist/index.js"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"start": "node ./dist/index.js",
"prepublishOnly": "npx tsup"
},
"files": [
"dist",
"README.md",
"SKILL.md",
"LICENSE"
],
"keywords": [
"humanize",
"ai-detection",
"ai-detector",
"gptzero",
"turnitin",
"originality",
"cli",
"ai-agent",
"command-line",
"humanizer",
"ai-text",
"bypass-ai-detection"
],
"author": "HumanizerAI <support@humanizerai.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/humanizerai/cli.git"
},
"homepage": "https://humanizerai.com",
"bugs": {
"url": "https://github.com/humanizerai/cli/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/yargs": "^17.0.32",
"tsup": "^8.5.1",
"typescript": "^5.3.3"
}
}