-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "humanizer",
"version": "2.2.0",
"description": "OpenClaw AI Humanizer - detect and remove AI writing patterns. Scans text for 29 common signs of AI-generated writing with statistical analysis (burstiness, TTR, readability) and provides actionable suggestions to make it sound natural and human.",
"main": "src/analyzer.js",
"bin": {
"humanizer": "src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"format": "prettier --write 'src/**/*.js' 'tests/**/*.js'",
"format:check": "prettier --check 'src/**/*.js' 'tests/**/*.js'",
"check": "npm run lint && npm run format:check && npm test",
"build": "echo 'No build step needed — pure Node.js'"
},
"keywords": [
"ai",
"writing",
"humanize",
"llm",
"detection",
"text-analysis",
"openclaw",
"skill",
"burstiness",
"type-token-ratio",
"flesch-kincaid",
"ai-detection"
],
"author": "Brandon Wise",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brandonwise/humanizer"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}