- Add package.json for project configuration and dependencies - Create content configuration for Starlight documentation - Add example guide and reference markdown files - Create index page for documentation with navigation and next steps - Set up TypeScript configuration for the project
17 lines
325 B
JSON
17 lines
325 B
JSON
{
|
|
"name": "opencode",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"start": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/starlight": "^0.38.1",
|
|
"astro": "^6.0.1",
|
|
"sharp": "^0.34.2"
|
|
}
|
|
} |