Bumps the npm-minor-patch group with 1 update: [prettier](https://github.com/prettier/prettier). Updates `prettier` from 3.8.2 to 3.8.3 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.8.2...3.8.3) --- updated-dependencies: - dependency-name: prettier dependency-version: 3.8.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-minor-patch ... Signed-off-by: dependabot[bot] <support@github.com>
53 lines
1.6 KiB
JSON
53 lines
1.6 KiB
JSON
{
|
|
"name": "menav",
|
|
"version": "1.3.0",
|
|
"description": "A personal navigation website",
|
|
"main": "src/generator.js",
|
|
"homepage": "https://rbetree.github.io/menav",
|
|
"scripts": {
|
|
"generate": "node src/generator.js",
|
|
"dev": "node ./scripts/dev.js",
|
|
"dev:offline": "node ./scripts/dev-offline.js",
|
|
"clean": "node ./scripts/clean.js",
|
|
"build": "node ./scripts/build.js",
|
|
"sync-articles": "node ./scripts/sync-articles.js",
|
|
"sync-projects": "node ./scripts/sync-projects.js",
|
|
"import-bookmarks": "node src/bookmark-processor.js",
|
|
"test": "node ./scripts/test.js",
|
|
"lint": "node ./scripts/lint.js",
|
|
"format": "node ./scripts/format.js --write",
|
|
"format:check": "node ./scripts/format.js --check",
|
|
"format:check:changed": "node ./scripts/format-check-changed.js",
|
|
"check": "node ./scripts/check.js",
|
|
"prepare": "husky"
|
|
},
|
|
"keywords": [
|
|
"navigation",
|
|
"website",
|
|
"personal"
|
|
],
|
|
"author": "Your Name",
|
|
"license": "AGPL-3.0-only",
|
|
"dependencies": {
|
|
"handlebars": "^4.7.9",
|
|
"js-yaml": "^4.1.1",
|
|
"markdown-it": "^14.1.1",
|
|
"rss-parser": "^3.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.28.0",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.4.0",
|
|
"prettier": "^3.8.3",
|
|
"serve": "^14.2.6"
|
|
},
|
|
"overrides": {
|
|
"brace-expansion": "1.1.12"
|
|
},
|
|
"lint-staged": {
|
|
"**/*.js": "node ./node_modules/prettier/bin/prettier.cjs --write --ignore-unknown",
|
|
"**/*.{yml,yaml,md,css}": "node ./node_modules/prettier/bin/prettier.cjs --write --ignore-unknown",
|
|
"**/!(package-lock).json": "node ./node_modules/prettier/bin/prettier.cjs --write --ignore-unknown"
|
|
}
|
|
}
|