roadmap/package.json

86 lines
2.3 KiB
JSON
Raw Normal View History

2023-05-29 00:44:08 +00:00
{
"name": "@jackyzha0/quartz",
"description": "🌱 publish your digital garden and notes as a website",
"private": true,
"version": "4.0.4",
2023-06-04 17:37:43 +00:00
"type": "module",
2023-05-29 00:44:08 +00:00
"author": "jackyzha0 <j.zhao2k19@gmail.com>",
"license": "MIT",
"homepage": "https://quartz.jzhao.xyz",
"repository": {
"type": "git",
"url": "https://github.com/jackyzha0/quartz.git"
},
2023-05-30 15:02:20 +00:00
"scripts": {
2023-06-01 16:33:20 +00:00
"typecheck": "tsc --noEmit"
2023-05-30 15:02:20 +00:00
},
2023-05-29 00:44:08 +00:00
"keywords": [
"site generator",
"ssg",
"digital-garden",
"markdown",
"blog",
"quartz"
],
"bin": {
2023-06-04 17:37:43 +00:00
"quartz": "./quartz/bootstrap-cli.mjs"
2023-05-29 00:44:08 +00:00
},
"dependencies": {
"@clack/prompts": "^0.6.3",
2023-06-17 23:05:46 +00:00
"@floating-ui/dom": "^1.4.0",
2023-05-30 15:02:20 +00:00
"@napi-rs/simple-git": "^0.1.8",
2023-05-29 00:44:08 +00:00
"chalk": "^4.1.2",
"cli-spinner": "^0.2.10",
2023-06-18 17:47:07 +00:00
"d3": "^7.8.5",
2023-06-01 21:35:31 +00:00
"esbuild-sass-plugin": "^2.9.0",
2023-06-20 03:37:45 +00:00
"flexsearch": "0.7.21",
2023-06-01 23:48:38 +00:00
"github-slugger": "^2.0.0",
2023-05-29 00:44:08 +00:00
"globby": "^13.1.4",
2023-05-30 15:02:20 +00:00
"gray-matter": "^4.0.3",
"hast-util-to-jsx-runtime": "^1.2.0",
2023-05-30 15:02:20 +00:00
"hast-util-to-string": "^2.0.0",
"is-absolute-url": "^4.0.1",
2023-06-01 16:33:20 +00:00
"mdast-util-find-and-replace": "^2.2.2",
"mdast-util-to-string": "^3.2.0",
"micromorph": "^0.4.5",
"plausible-tracker": "^0.3.8",
2023-05-29 00:44:08 +00:00
"preact": "^10.14.1",
"preact-render-to-string": "^6.0.3",
"pretty-time": "^1.1.0",
"reading-time": "^1.5.0",
2023-06-01 23:48:38 +00:00
"rehype-autolink-headings": "^6.1.1",
2023-05-30 15:02:20 +00:00
"rehype-katex": "^6.0.3",
2023-06-01 23:05:14 +00:00
"rehype-pretty-code": "^0.9.6",
2023-06-01 16:33:20 +00:00
"rehype-raw": "^6.1.1",
2023-06-01 23:48:38 +00:00
"rehype-slug": "^5.1.0",
2023-05-29 00:44:08 +00:00
"remark": "^14.0.2",
2023-05-30 15:02:20 +00:00
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
2023-05-29 00:44:08 +00:00
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
2023-05-30 15:02:20 +00:00
"remark-smartypants": "^2.0.0",
"rimraf": "^5.0.1",
2023-05-29 00:44:08 +00:00
"serve-handler": "^6.1.5",
"to-vfile": "^7.2.4",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.2",
2023-05-29 00:44:08 +00:00
"vfile": "^5.3.7",
2023-06-04 17:37:43 +00:00
"workerpool": "^6.4.0",
2023-05-29 00:44:08 +00:00
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/cli-spinner": "^0.2.1",
2023-06-18 17:47:07 +00:00
"@types/d3": "^7.4.0",
2023-06-20 03:37:45 +00:00
"@types/flexsearch": "^0.7.3",
2023-05-29 00:44:08 +00:00
"@types/hast": "^2.3.4",
2023-05-30 15:02:20 +00:00
"@types/node": "^20.1.2",
2023-05-29 00:44:08 +00:00
"@types/pretty-time": "^1.1.2",
"@types/serve-handler": "^6.1.1",
2023-06-04 17:37:43 +00:00
"@types/workerpool": "^6.4.0",
2023-05-29 00:44:08 +00:00
"@types/yargs": "^17.0.24",
2023-07-05 01:08:36 +00:00
"esbuild": "^0.18.11",
2023-05-29 00:44:08 +00:00
"typescript": "^5.0.4"
}
}