forked from AgriciDaniel/seo-os
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.79 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
{
"name": "seo-office",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-or-later",
"description": "Local-first SEO agency operating system. Fuses claw3d (UI), claude-seo (specialists), and marketing-brain (state machine) into a unified app. Open source under AGPL-3.0.",
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "node --conditions=react-server --import ./scripts/test-resolve-hook.mjs --test 'src/**/__tests__/*.test.ts'",
"test:e2e": "pnpm build && playwright test",
"smoke:providers": "node scripts/smoke-provider-readiness.mjs --providers=dataforseo,search-console,ga4 --required=dataforseo,search-console,ga4",
"smoke:marketing-brain": "node scripts/smoke-marketing-brain-scripts.mjs"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.95.2",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"better-sqlite3": "^12.9.0",
"framer-motion": "^12.39.0",
"gray-matter": "^4.0.3",
"jszip": "^3.10.1",
"mammoth": "^1.12.0",
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"three": "^0.184.0",
"ulid": "^3.0.2",
"xlsx": "^0.18.5",
"zod": "^4.4.3",
"zustand": "^5.0.13"
},
"devDependencies": {
"@playwright/test": "1.60.0",
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.184.1",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"server-only": "^0.0.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}