-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.74 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.74 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
87
88
89
90
91
92
93
94
95
96
97
{
"name": "md-review",
"version": "1.3.2",
"description": "Review Markdown files in your browser with inline comments",
"type": "module",
"bin": {
"md-review": "bin/md-review.js"
},
"files": [
"bin",
"dist",
"server"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ryo-manba/md-review.git"
},
"bugs": {
"url": "https://github.com/ryo-manba/md-review/issues"
},
"homepage": "https://github.com/ryo-manba/md-review#readme",
"scripts": {
"dev": "concurrently 'pnpm run server' 'pnpm run client'",
"client": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"server": "node server/index.js",
"lint": "concurrently 'pnpm run lint:js' 'pnpm run lint:css'",
"lint:fix": "concurrently 'pnpm run lint:js:fix' 'pnpm run lint:css:fix'",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:css:fix": "stylelint \"src/**/*.css\" --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"markdown",
"review",
"cli",
"preview",
"comments",
"documentation"
],
"author": "ryo-manba",
"license": "MIT",
"funding": "https://github.com/ryo-manba/md-review?sponsor=1",
"packageManager": "pnpm@10.23.0",
"dependencies": {
"@hono/node-server": "^1.19.6",
"@vitejs/plugin-react": "^4.3.4",
"chokidar": "^5.0.0",
"highlight.js": "^11.11.1",
"hono": "^4.10.6",
"mermaid": "^11.12.2",
"mri": "^1.2.0",
"open": "^11.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"vite": "^6.0.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/hast": "^3.0.4",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"jsdom": "^27.3.0",
"prettier": "^3.7.4",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"stylelint-plugin-use-baseline": "^1.1.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.50.0",
"vitest": "^4.0.16"
}
}