1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-16 12:10:31 +00:00
conky/web/package.json
Tin Švagelj f5b7106088
Enable use of HTML in docs (#1900)
Fix alignment documentation:
- while it renders fine on the web, it's stripped from man pages.
  Inline HTML renders fine in some cases, but tables don't.

There's no unified (remark) plugin that works well with headless
tables pandoc supports as well, so the only way to achieve a similar
effect is to leave header cells empty.

Signed-off-by: Tin Švagelj <tin.svagelj@live.com>
2024-05-06 18:51:19 +00:00

74 lines
2.4 KiB
JSON

{
"name": "conky-website",
"description": "Conky website",
"author": "Conky developers",
"license": "GPL-3.0-only",
"contributors": [
"Brenden Matthews"
],
"homepage": "https://github.com/brndnmtthws/conky",
"bugs": {
"url": "https://github.com/brndnmtthws/conky/issues"
},
"scripts": {
"dev": "npm run write-search-index && next dev",
"dev:watch": "npm run write-search-index && next-remote-watch ./documents",
"build": "npm run write-search-index && next build",
"start": "npm run write-search-index && next start",
"export": "npm run write-search-index && next build && next export",
"lint": "next lint",
"e2e": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\"",
"write-search-index": "tsx ./scripts/write-search-index.ts"
},
"dependencies": {
"@fontsource-variable/fira-code": "^5.0.17",
"@fontsource-variable/inter": "^5.0.17",
"@fontsource-variable/newsreader": "^5.0.18",
"@headlessui/react": "^1.7.18",
"@netlify/plugin-nextjs": "^5.0.0",
"@tailwindcss/typography": "^0.5.12",
"classnames": "^2.5.1",
"colord": "^2.9.3",
"follow-redirects": "^1.15.6",
"fuse.js": "^7.0.0",
"gray-matter": "^4.0.3",
"inter-ui": "^4.0.2",
"next": "^14.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"rehype-parse": "^9.0.0",
"rehype-react": "^8.0.0"
},
"devDependencies": {
"@types/eslint": "^8.56.8",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.12.7",
"@types/react": "^18.2.76",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"autoprefixer": "^10.4.19",
"cypress": "^13.7.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-mdx": "^3.1.5",
"js-yaml": "^4.1.0",
"netlify-cli": "^17.22.1",
"netlify-plugin-cypress": "^2.2.1",
"next-remote-watch": "2.0.0",
"postcss": "^8.4.38",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"start-server-and-test": "^2.0.3",
"tailwindcss": "^3.4.3",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
}
}