roadmap/package.json

110 lines
3.0 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.1.0",
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-08-23 20:10:23 +00:00
"docs": "npx quartz build --serve -d docs",
2023-07-23 00:26:03 +00:00
"check": "tsc --noEmit && npx prettier . --check",
"format": "npx prettier . --write",
"test": "tsx ./quartz/util/path.test.ts",
"profile": "0x -D prof ./quartz/bootstrap-cli.mjs build --concurrency=1"
2023-05-30 15:02:20 +00:00
},
2023-08-20 15:57:56 +00:00
"engines": {
2023-10-04 16:23:56 +00:00
"npm": ">=9.3.1",
2023-08-20 15:57:56 +00:00
"node": ">=18.14"
},
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-08-23 16:16:44 +00:00
"@napi-rs/simple-git": "0.1.9",
"async-mutex": "^0.4.0",
2023-05-29 00:44:08 +00:00
"chalk": "^4.1.2",
2023-07-22 23:06:36 +00:00
"chokidar": "^3.5.3",
2023-05-29 00:44:08 +00:00
"cli-spinner": "^0.2.10",
2023-06-18 17:47:07 +00:00
"d3": "^7.8.5",
2023-08-23 16:10:30 +00:00
"esbuild-sass-plugin": "^2.12.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-html": "^8.0.4",
"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-07-07 01:45:38 +00:00
"js-yaml": "^4.1.0",
2023-08-23 16:19:00 +00:00
"lightningcss": "1.21.7",
2023-06-01 16:33:20 +00:00
"mdast-util-find-and-replace": "^2.2.2",
"mdast-util-to-hast": "^12.3.0",
"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-bytes": "^6.1.0",
2023-05-29 00:44:08 +00:00
"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-08-04 06:36:00 +00:00
"rehype-mathjax": "^4.0.3",
2023-07-10 02:32:24 +00:00
"rehype-pretty-code": "^0.10.0",
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",
"remark-breaks": "^3.0.3",
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",
"source-map-support": "^0.5.21",
2023-05-29 00:44:08 +00:00
"to-vfile": "^7.2.4",
"toml": "^3.0.0",
2023-05-29 00:44:08 +00:00
"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-07-22 23:06:36 +00:00
"ws": "^8.13.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-07-07 01:45:38 +00:00
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.1.2",
2023-05-29 00:44:08 +00:00
"@types/pretty-time": "^1.1.2",
"@types/source-map-support": "^0.5.6",
2023-06-04 17:37:43 +00:00
"@types/workerpool": "^6.4.0",
2023-07-22 23:06:36 +00:00
"@types/ws": "^8.5.5",
2023-05-29 00:44:08 +00:00
"@types/yargs": "^17.0.24",
2023-08-23 16:16:44 +00:00
"esbuild": "0.19.2",
2023-07-23 00:26:03 +00:00
"prettier": "^3.0.0",
2023-07-13 07:19:35 +00:00
"tsx": "^3.12.7",
2023-05-29 00:44:08 +00:00
"typescript": "^5.0.4"
}
}