-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.74 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
{
"name": "campaignrepo",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.2",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^11.10.0",
"gray-matter": "^4.0.3",
"isomorphic-dompurify": "^3.17.0",
"lucide-react": "^0.468.0",
"marked": "^18.0.5",
"minisearch": "^7.1.2",
"next": "^15.0.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sharp": "^0.35.3",
"yaml": "^2.6.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.9.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.15.0",
"eslint-config-next": "^15.0.3",
"typescript": "^5.6.3",
"vitest": "^4.1.9"
},
"description": "A self-hosted, Git-backed campaign manager for tabletop RPGs with wiki pages, player-safe portals, maps, sessions, quests, imports, AI tools, and MCP support.",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avorial/CampaignRepo.git"
},
"keywords": [
"tabletop-rpg",
"ttrpg",
"campaign-manager",
"campaign-wiki",
"game-master",
"self-hosted",
"git-backed",
"nextjs",
"typescript",
"mcp"
],
"author": "Patric Thomas",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/avorial/CampaignRepo/issues"
},
"homepage": "https://github.com/avorial/CampaignRepo#readme"
}