-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.31 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.31 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
{
"name": "writing-agent",
"version": "1.0.0",
"description": "Writing Agent — Undetectable AI Writing Tool powered by Ghost Protocol. CLI & Multi-Agent Framework.",
"type": "module",
"main": "src/ghost.js",
"bin": {
"ghost": "./src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"test": "node --test tests/",
"benchmark": "node scripts/benchmark.js",
"calibrate": "node scripts/calibrate.js",
"lint": "eslint src/",
"check": "node src/cli.js check"
},
"keywords": [
"ai-writing",
"content-creation",
"ai-detection",
"writing-agent",
"cli-tool",
"writing-agent"
],
"author": "It All Started With A Idea <hello@itallstartedwithaidea.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itallstartedwithaidea/writing-agent.git"
},
"homepage": "https://github.com/itallstartedwithaidea/writing-agent#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"compromise": "^14.14.0",
"docx": "^9.1.1",
"dotenv": "^16.4.7",
"js-yaml": "^4.1.0",
"marked": "^15.0.0",
"natural": "^8.0.1",
"ora": "^8.1.1",
"syllable": "^5.0.1"
},
"devDependencies": {
"eslint": "^9.0.0"
}
}