UNPKG

vitepress-plugin-auto-sidebar

Version:
58 lines 1.66 kB
{ "name": "vitepress-plugin-auto-sidebar", "repository": "git://github.com/JonathanSchndr/vitepress-plugin-auto-sidebar.git", "version": "1.4.0", "description": "Generate the VitePress sidebar through the folder structure.", "types": "./dist/types/src/index.d.ts", "files": [ "dist" ], "type": "module", "main": "./dist/vitepress-plugin-auto-sidebar.umd.cjs", "module": "./dist/vitepress-plugin-auto-sidebar.js", "exports": { ".": { "import": "./dist/vitepress-plugin-auto-sidebar.js", "require": "./dist/vitepress-plugin-auto-sidebar.umd.cjs" } }, "engines": { "node": ">=18" }, "keywords": [ "vitepress", "auto", "sidebar" ], "author": "Jonathan Schneider", "license": "MIT", "bugs": { "url": "https://github.com/JonathanSchndr/vitepress-plugin-auto-sidebar/issues" }, "homepage": "https://github.com/JonathanSchndr/vitepress-plugin-auto-sidebar#readme", "devDependencies": { "@types/node": "^24.10.1", "@vitest/ui": "^4.0.10", "oxlint": "^1.29.0", "prettier": "^3.6.2", "vite": "^7.2.2", "vitest": "^4.0.10", "vue-tsc": "^3.1.4" }, "dependencies": { "front-matter": "^4.0.2" }, "scripts": { "build": "vite build", "postbuild": "vue-tsc --emitDeclarationOnly", "lint": "oxlint src", "lint:fix": "oxlint src --fix", "format": "prettier --write \"src/**/*.{ts,js,json}\"", "format:check": "prettier --check \"src/**/*.{ts,js,json}\"", "test": "vitest run", "test:watch": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest run --coverage", "typecheck": "vue-tsc --noEmit" } }