-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 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
{
"name": "impersonaid",
"version": "1.0.0",
"description": "Test your documentation against LLM-powered user personas",
"main": "index.js",
"bin": {
"impersonaid": "./index.js"
},
"scripts": {
"start": "node index.js",
"web": "node src/web-server.js",
"create-sample": "node index.js create-sample",
"list-personas": "node index.js list-personas",
"list-models": "node index.js list-models"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theletterf/llm-docs-persona-simulator.git"
},
"keywords": [
"llm",
"documentation",
"persona",
"simulator",
"user-testing",
"ux-research",
"openai",
"claude",
"gemini",
"ollama",
"openrouter"
],
"author": "Fabrizio Ferri-Benedetti",
"license": "MIT",
"bugs": {
"url": "https://github.com/theletterf/llm-docs-persona-simulator/issues"
},
"homepage": "https://github.com/theletterf/llm-docs-persona-simulator#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.54.0",
"@google/generative-ai": "^0.24.1",
"axios": "^1.12.2",
"cheerio": "^1.1.0",
"commander": "^14.0.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"ejs": "^3.1.10",
"express": "^5.1.0",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2",
"openai": "^5.3.0",
"socket.io": "^4.8.1",
"toml": "^3.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}