- 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
20 lines
516 B
JSON
20 lines
516 B
JSON
{
|
|
"name": "openclaw",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"docs:dev": "vitepress dev docs",
|
|
"docs:build": "vitepress build docs",
|
|
"docs:preview": "vitepress preview docs"
|
|
},
|
|
"keywords": [],
|
|
"author": "abearxiong <xiongxiao@xiongxiao.me> (https://www.xiongxiao.me)",
|
|
"license": "MIT",
|
|
"packageManager": "pnpm@10.32.1",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"vitepress": "^1.6.4"
|
|
}
|
|
} |