-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.97 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.97 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
{
"name": "10x-vibe-marketer",
"version": "2.0.0",
"description": "10X Vibe Marketer — Autonomous AI Marketing Agency with 26 agents (13 departments + 13 platform research), 27 slash commands, 8 campaign templates, DoltgreSQL marketing intelligence database, TLDraw canvas visualization, real-time platform research via Claude in Chrome, Gemini AI image generation, JSONL knowledge base, universal MCP integration, and activity tracking. Developed by 10x.in",
"private": true,
"author": {
"name": "10x.in",
"url": "https://10x.in"
},
"dependencies": {
"tldraw": "^3.0.0",
"@tldraw/tldraw": "^3.0.0",
"@kitschpatrol/tldraw-cli": "^5.0.0"
},
"scripts": {
"setup:win": "powershell -ExecutionPolicy Bypass -File scripts/setup.ps1",
"setup:unix": "bash scripts/setup.sh",
"db:start": "docker compose up -d",
"db:stop": "docker compose down",
"db:reset": "docker compose down -v && docker compose up -d",
"db:schema": "docker exec -i 10x-marketer-db psql -U postgres < db/init/001-schema.sql && docker exec -i 10x-marketer-db psql -U postgres < db/init/002-seed-functions.sql && docker exec -i 10x-marketer-db psql -U postgres < db/init/003-seed-data.sql",
"db:import": "pip install -r db/import/requirements.txt && python db/import/import-scrapbook.py && python db/import/import-templates.py",
"export-visual": "npx @kitschpatrol/tldraw-cli export",
"research:install": "pip install -r scripts/research/requirements.txt",
"research:kb-stats": "python scripts/research/knowledge_base.py stats",
"research:scrape": "python scripts/research/web_scraper.py",
"research:image": "python scripts/research/image_generator.py",
"sync:opencode": "node scripts/sync-opencode.js",
"sync:codex": "node scripts/sync-codex.js",
"sync:all": "node scripts/sync-opencode.js && node scripts/sync-codex.js",
"verify": "node -e \"const p=require('./package.json'); console.log(p.name + ' v' + p.version + ' — ' + p.description)\""
}
}