-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "react-code-diff",
"private": false,
"version": "1.0.0",
"description": "A React component for rendering GitHub-style code diffs with syntax highlighting, inline diff, search, split/unified views and more.",
"type": "module",
"license": "MIT",
"author": "quanming1",
"keywords": [
"react",
"diff",
"code-diff",
"syntax-highlighting",
"refractor",
"split-view",
"unified-view",
"component",
"github-diff"
],
"repository": {
"type": "git",
"url": "https://github.com/quanming1/react-code-diff.git"
},
"homepage": "https://github.com/quanming1/react-code-diff",
"bugs": {
"url": "https://github.com/quanming1/react-code-diff/issues"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "oxlint",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"diff": "8.0.3",
"lucide-react": "^1.25.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"refractor": "5.0.0"
},
"devDependencies": {
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"oxlint": "^1.71.0",
"typescript": "~6.0.2",
"vite": "^8.1.1",
"vitest": "^4.1.10"
}
}