-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "rendermd",
"version": "0.0.0",
"private": true,
"description": "Realtime markdown preview and PDF export, built for users who want to clean up LLM-generated markdown.",
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"scripts": {
"prepare": "husky",
"dev": "next dev",
"build": "next build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:oxlint": "oxlint src/ scripts/",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,mjs,json,md,css,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mjs,json,md,css,yml,yaml}\"",
"test": "vitest",
"test:run": "vitest run --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"knip": "knip"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.0",
"@uiw/react-codemirror": "^4.25.10",
"highlight.js": "^11.11.1",
"katex": "^0.16.0",
"lucide-react": "^1.17.0",
"next": "^16.2.9",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/mdast": "^4.0.4",
"@types/node": "^22.10.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.13.0",
"eslint-config-next": "^16.2.9",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.6",
"jsdom": "^29.1.1",
"knip": "^6.16.1",
"lint-staged": "^17.0.7",
"oxlint": "^1.69.0",
"playwright": "^1.60.0",
"prettier": "^3.3.3",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"tsx": "^4.22.4",
"typescript": "^5.6.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"vitest": "^2.1.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs}": [
"oxlint --fix",
"eslint --fix --max-warnings 0",
"prettier --write"
],
"*.{json,md,css,yml,yaml}": [
"prettier --write"
]
}
}