-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.57 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.57 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
{
"name": "virtual-react-json-diff",
"type": "module",
"version": "1.0.16",
"description": "Fast, virtualized React component for visually comparing large JSON objects. Includes search, theming, and minimap.",
"author": {
"name": "Utku Akyüz"
},
"license": "MIT",
"homepage": "https://virtual-react-json-diff.netlify.app",
"repository": {
"type": "git",
"url": "https://github.com/utkuakyuz/virtual-react-json-diff"
},
"bugs": {
"url": "https://github.com/utkuakyuz/virtual-react-json-diff/issues"
},
"keywords": [
"react",
"json",
"diff",
"json diff",
"json compare",
"diff viewer",
"react json diff",
"json visualizer",
"json viewer",
"virtual scroll",
"large json",
"compare json",
"react diff viewer"
],
"main": "dist/cjs/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "bun run rollup",
"watch": "bun run rollup --watch",
"prepublishOnly": "bun run build",
"rollup": "rollup -c --bundleConfigAsCjs",
"lint": "eslint",
"lint:fix": "eslint --fix",
"demo:dev": "cd demo && npm run dev",
"demo:build": "cd demo && npm run build",
"dev:watch": "concurrently \"npm run watch\" \"npm run demo:dev\""
},
"peerDependencies": {
"react": ">=18.0.0"
},
"dependencies": {
"fast-myers-diff": "^3.2.0",
"json-diff-kit": "^1.0.32",
"react-window": "^1.8.11"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.1",
"@eslint-react/eslint-plugin": "^1.52.6",
"@fontsource/inter": "^5.1.1",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/node": "^22.14.1",
"@types/react": ">=18.0.0",
"@types/react-window": "^1.8.8",
"concurrently": "^8.2.2",
"eslint": "^9.33.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"lint-staged": "^16.1.5",
"postcss": "^8.5.1",
"react": ">=18.0.0",
"rollup": "^3.26.3",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"simple-git-hooks": "^2.13.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,html,json,yaml,css,scss}": "eslint --fix",
"*.md": "echo 'Skipping markdown files in lint-staged'"
}
}