forked from praneshr/react-diff-viewer
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.37 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.37 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
{
"name": "react-diff-viewer-continued",
"version": "4.2.0",
"private": false,
"description": "Continuation of a simple and beautiful text diff viewer component made with diff and React",
"keywords": [
"review",
"code-review",
"diff",
"diff-viewer",
"github",
"react",
"react-component",
"ui"
],
"repository": "https://github.com/Aeolun/react-diff-viewer-continued",
"license": "MIT",
"authors": [
"Pranesh Ravi<praneshpranesh@gmail.com>",
"Bart Riepe <bart@serial-experiments.com>"
],
"type": "module",
"exports": {
".": {
"types": "./lib/cjs/src/index.d.ts",
"import": "./lib/esm/src/index.js",
"require": "./lib/cjs/src/index.js"
}
},
"main": "lib/cjs/src/index",
"module": "lib/esm/src/index",
"typings": "lib/cjs/src/index",
"scripts": {
"build:worker": "node scripts/build-worker.js",
"build": "pnpm run build:worker && tsc --project tsconfig.json && tsc --project tsconfig.esm.json",
"build:examples": "vite build examples",
"publish:examples": "NODE_ENV=production pnpm run build:examples && gh-pages -d examples/dist -r $GITHUB_REPO_URL",
"publish:examples:local": "NODE_ENV=production pnpm run build:examples && gh-pages -d examples/dist",
"start:examples": "vite examples",
"dev": "vite dev examples",
"test": "vitest",
"check": "biome check src/ test/",
"check:fix": "biome check --write --unsafe src/ test/"
},
"dependencies": {
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.14.0",
"classnames": "^2.5.1",
"diff": "^8.0.3",
"js-yaml": "^4.1.1",
"memoize-one": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.2.0",
"@types/react": "^19.2.11",
"@types/react-dom": "^19.2.3",
"esbuild": "^0.27.3",
"gh-pages": "^6.3.0",
"happy-dom": "^20.5.0",
"just-release": "^0.7.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sass": "^1.97.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"engines": {
"node": ">= 16"
}
}