- 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
15 lines
350 B
JSON
15 lines
350 B
JSON
{
|
|
"name": "how-to-use-cnb",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"init": "npm create astro@latest -- --template starlight"
|
|
},
|
|
"keywords": [],
|
|
"author": "abearxiong <xiongxiao@xiongxiao.me> (https://www.xiongxiao.me)",
|
|
"license": "MIT",
|
|
"packageManager": "pnpm@10.32.1",
|
|
"type": "module"
|
|
}
|