forked from rudra496/StealthHumanizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.4 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.4 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "stealthhumanizer",
"version": "2.1.0",
"private": true,
"engines": {
"node": ">=20"
},
"bin": {
"stealth-humanize": "bin/cli.ts"
},
"scripts": {
"cli": "tsx bin/cli.ts",
"cli:build": "tsc --project tsconfig.cli.json",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"papers:ingest": "node scripts/papers/ingest-open-access.mjs",
"papers:version": "node scripts/papers/version-dataset.mjs",
"papers:analyze": "node scripts/papers/analyze-fulltext.mjs",
"papers:benchmark": "node scripts/papers/build-benchmark.mjs",
"model:train": "node scripts/model/train-framework.mjs",
"model:eval": "node scripts/model/evaluate-framework.mjs",
"test:integration": "node scripts/tests/integration-smoke.mjs",
"test:pr2-integrity": "node scripts/tests/pr2-integrity-schema-check.mjs",
"pipeline:complete": "node scripts/tests/complete-e2e.mjs",
"pipeline:q1-batch": "node scripts/papers/batch-download-and-train.mjs",
"papers:download-few": "node scripts/papers/download-few-open-source.mjs",
"test:download-few": "node scripts/tests/download-few-smoke.mjs",
"pipeline:q1-ready": "node scripts/papers/complete-ready-pipeline.mjs",
"pipeline:q1-ready:skip-install": "node scripts/papers/complete-ready-pipeline.mjs --skip-install"
},
"dependencies": {
"jspdf": "^4.2.1",
"lucide-react": "^1.14.0",
"mammoth": "^1.12.0",
"next": "16.2.6",
"pdfjs-dist": "^5.7.284",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"recharts": "^3.8.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.4",
"@types/node": "^25.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.5.0",
"dotenv": "^17.4.2",
"eslint": "^9.0.0",
"eslint-config-next": "^16.2.6",
"postcss": "^8.5.14",
"tailwindcss": "^4.2.4",
"tsx": "^4.19.2",
"typescript": "^6.0.2"
},
"description": "Free open-source AI text humanizer with style-aware rewriting",
"license": "MIT",
"author": "Rudra Sarker <rudrasarker130@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/rudra496/StealthHumanizer"
},
"homepage": "https://stealthhumanizer.vercel.app/",
"keywords": [
"ai-humanizer",
"ai-detector",
"text-rewriter",
"style-aware",
"academic-writing",
"nextjs",
"open-source"
]
}