- Add POST /api/library/rename/:item_type/:name endpoint supporting skills, commands, rules, agents, tools, and workspace templates - Implement dry_run mode to preview changes before applying - Auto-update all cross-references in related configs and workspaces - Add RenameDialog component with preview and apply workflow - Integrate rename action into Skills, Commands, and Rules config pages - Fix settings page to sync config before restarting OpenCode - Clarify INSTALL.md dashboard deployment options (Vercel vs local) - Add docs-site scaffolding (Nextra-based documentation)
33 lines
787 B
JSON
33 lines
787 B
JSON
{
|
|
"name": "openagent-docs",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Open Agent documentation website",
|
|
"scripts": {
|
|
"dev": "next dev -p 3002",
|
|
"build": "next build",
|
|
"start": "next start -p 3002",
|
|
"lint": "eslint app components"
|
|
},
|
|
"dependencies": {
|
|
"@remixicon/react": "^4.7.0",
|
|
"@tailwindcss/postcss": "^4.1.0",
|
|
"clsx": "^2.1.1",
|
|
"next": "^16.0.7",
|
|
"next-themes": "^0.4.6",
|
|
"nextra": "^4.6.1",
|
|
"nextra-theme-docs": "^4.6.1",
|
|
"react": "^19.2.1",
|
|
"react-dom": "^19.2.1",
|
|
"tailwind-merge": "^2.6.0",
|
|
"tailwindcss": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.10.1",
|
|
"@types/react": "19.2.7",
|
|
"@types/react-dom": "^19.2.3",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|