-
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.42 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.42 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": "roleverse",
"version": "0.1.0",
"private": true,
"description": "AI-powered tabletop RPG companion with Fantasy Grounds integration",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"test": "echo \"Tests will be added in Phase 3\"",
"test:watch": "echo \"Tests will be added in Phase 3\"",
"test:coverage": "echo \"Tests will be added in Phase 3\"",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"supabase:reset": "supabase db reset",
"supabase:migrate": "supabase db push",
"ingest-pdf": "tsx scripts/ingest-rulebook.ts",
"prepare": "husky install",
"security:scan": "npm audit --audit-level=moderate",
"security:fix": "npm audit fix",
"analyze": "ANALYZE=true next build"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.111.0",
"@radix-ui/react-avatar": "^1.2.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.11",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@supabase/ssr": "^0.12.3",
"@supabase/supabase-js": "^2.106.0",
"axios": "^1.16.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^1.17.0",
"next": "^16.2.10",
"openai": "^6.41.0",
"pdf-parse-fork": "^1.2.0",
"react": "^19.2.7",
"react-dom": "^19.2.6",
"tailwind-merge": "^3.6.0",
"tar": "7.5.19",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^26.1.1",
"@types/pdf-parse": "^1.1.4",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.10",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"postcss": "^8.5.19",
"prettier": "^3.9.5",
"prettier-plugin-tailwindcss": "^0.8.0",
"supabase": "^2.109.1",
"tailwindcss": "^4.2.4",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1"
}
}