2026-02-13 11:18:48 +00:00
|
|
|
{
|
2026-02-13 12:19:00 +00:00
|
|
|
"name": "@quartz-community/recent-notes",
|
2026-02-13 11:18:48 +00:00
|
|
|
"version": "0.1.0",
|
2026-02-13 12:19:00 +00:00
|
|
|
"description": "Recent Notes component for Quartz - displays recently modified pages",
|
2026-02-13 11:18:48 +00:00
|
|
|
"type": "module",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"author": "Quartz Community",
|
2026-02-13 12:19:00 +00:00
|
|
|
"homepage": "https://github.com/quartz-community/recent-notes",
|
2026-02-13 11:18:48 +00:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2026-02-13 12:19:00 +00:00
|
|
|
"url": "https://github.com/quartz-community/recent-notes"
|
2026-02-13 11:18:48 +00:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"quartz",
|
|
|
|
|
"quartz-plugin",
|
2026-02-13 12:19:00 +00:00
|
|
|
"recent-notes",
|
|
|
|
|
"component"
|
2026-02-13 11:18:48 +00:00
|
|
|
],
|
|
|
|
|
"files": [
|
|
|
|
|
"dist",
|
|
|
|
|
"README.md",
|
|
|
|
|
"LICENSE",
|
|
|
|
|
"CHANGELOG.md"
|
|
|
|
|
],
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"./components": {
|
|
|
|
|
"types": "./dist/components/index.d.ts",
|
|
|
|
|
"import": "./dist/components/index.js"
|
|
|
|
|
},
|
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
|
},
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"sideEffects": false,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsup",
|
|
|
|
|
"dev": "tsup --watch",
|
|
|
|
|
"lint": "eslint . --max-warnings=0",
|
|
|
|
|
"format": "prettier . --check",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"check": "npm run typecheck && npm run lint && npm run format && npm run test"
|
|
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"preact": "^10.0.0"
|
|
|
|
|
},
|
|
|
|
|
"peerDependenciesMeta": {
|
|
|
|
|
"preact": {
|
|
|
|
|
"optional": false
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-02-13 12:27:49 +00:00
|
|
|
"@quartz-community/types": "github:quartz-community/types",
|
2026-03-14 20:27:32 +00:00
|
|
|
"@quartz-community/utils": "github:quartz-community/utils"
|
2026-02-13 11:18:48 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/hast": "^3.0.4",
|
|
|
|
|
"@types/mdast": "^4.0.4",
|
|
|
|
|
"@types/node": "^24.10.0",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
|
|
|
"@typescript-eslint/parser": "^7.18.0",
|
|
|
|
|
"eslint": "^8.57.0",
|
|
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2026-03-16 17:54:39 +00:00
|
|
|
"github-slugger": "^2.0.0",
|
|
|
|
|
"hast-util-to-jsx-runtime": "^2.3.6",
|
2026-02-13 11:18:48 +00:00
|
|
|
"preact": "^10.28.2",
|
|
|
|
|
"prettier": "^3.6.2",
|
2026-02-26 15:44:51 +00:00
|
|
|
"sass": "^1.97.3",
|
2026-02-13 12:19:00 +00:00
|
|
|
"sass-embedded": "^1.97.3",
|
2026-03-14 20:27:32 +00:00
|
|
|
"tsup": "^8.5.0",
|
2026-03-16 17:54:39 +00:00
|
|
|
"typescript": "^5.9.3",
|
|
|
|
|
"vfile": "^6.0.3",
|
|
|
|
|
"vitest": "^2.1.9"
|
2026-02-13 11:18:48 +00:00
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=22",
|
|
|
|
|
"npm": ">=10.9.2"
|
2026-02-17 16:44:00 +00:00
|
|
|
},
|
|
|
|
|
"quartz": {
|
|
|
|
|
"name": "recent-notes",
|
|
|
|
|
"displayName": "Recent Notes",
|
|
|
|
|
"category": "component",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"quartzVersion": ">=5.0.0",
|
|
|
|
|
"dependencies": [],
|
|
|
|
|
"defaultOrder": 50,
|
|
|
|
|
"defaultEnabled": false,
|
2026-05-22 18:06:19 +00:00
|
|
|
"defaultOptions": {
|
|
|
|
|
"limit": 3,
|
|
|
|
|
"linkToMore": false,
|
|
|
|
|
"showTags": true,
|
|
|
|
|
"hideTagPages": false,
|
|
|
|
|
"hideFolderPages": false
|
|
|
|
|
},
|
2026-03-20 12:35:01 +00:00
|
|
|
"components": {
|
|
|
|
|
"RecentNotes": {
|
|
|
|
|
"displayName": "Recent Notes",
|
|
|
|
|
"defaultPosition": "afterBody",
|
|
|
|
|
"defaultPriority": 50
|
|
|
|
|
}
|
2026-05-22 18:06:19 +00:00
|
|
|
},
|
|
|
|
|
"optionSchema": {
|
|
|
|
|
"title": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"limit": {
|
|
|
|
|
"type": "number"
|
|
|
|
|
},
|
|
|
|
|
"linkToMore": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"showTags": {
|
|
|
|
|
"type": "boolean"
|
|
|
|
|
},
|
|
|
|
|
"hideTagPages": {
|
|
|
|
|
"type": "boolean"
|
|
|
|
|
},
|
|
|
|
|
"hideFolderPages": {
|
|
|
|
|
"type": "boolean"
|
|
|
|
|
}
|
2026-03-20 12:35:01 +00:00
|
|
|
}
|
2026-02-13 11:18:48 +00:00
|
|
|
}
|
|
|
|
|
}
|