noz/package.json
2026-05-18 16:22:06 +02:00

57 lines
1.8 KiB
JSON

{
"name": "noz",
"version": "0.1.0",
"description": "A self-hosted digital garden — Markdown notes, wikilinks, KaTeX, graph view and a full CLI/studio API.",
"author": "Bruno Deanoz <bruno.deanoz@protonmail.com>",
"license": "AGPL-3.0-only",
"homepage": "https://noz.kryptomnrx.de",
"repository": {
"type": "git",
"url": "https://git.kryptomrx.de/noz/noz.git"
},
"private": true,
"scripts": {
"dev": "tsx --env-file=.env.local scripts/build-index.ts --watch --index & next dev",
"build": "tsx scripts/build-index.ts && next build",
"postbuild": "tsx --env-file=.env.local scripts/index-notes.ts",
"build:index": "tsx scripts/build-index.ts",
"build:index:force": "tsx scripts/build-index.ts --force",
"start": "next start",
"lint": "eslint",
"index": "tsx --env-file=.env.local scripts/index-notes.ts",
"note:new": "tsx scripts/note-new.ts",
"test:backup": "tsx --test src/lib/git-backup.test.ts"
},
"dependencies": {
"@shikijs/rehype": "^4.0.2",
"d3-force": "^3.0.0",
"gray-matter": "^4.0.3",
"isomorphic-git": "^1.38.1",
"meilisearch": "^0.58.0",
"minisearch": "^7.2.0",
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"rehype-katex": "^7.0.1",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"remark-math": "^6.0.0",
"remark-rehype": "^11.1.2",
"shiki": "^4.0.2",
"smol-toml": "^1.6.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/d3-force": "^3.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
}
}