-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.33 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
{
"name": "react-obj-view",
"version": "1.1.10",
"description": "A powerful React component for visualizing JavaScript objects and data structures with an interactive, expandable tree view",
"type": "module",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./dist/react-obj-view.css": "./dist/react-obj-view.css"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/vothanhdat/react-obj-view/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/vothanhdat/react-obj-view.git"
},
"scripts": {
"build": "vite build",
"build:analyzer": "ANALYZER=1 vite build",
"build:demo": "vite build --config vite.config.demo.ts",
"dev": "vite --config vite.config.dev.ts",
"preview:demo": "vite preview --config vite.config.demo.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"react",
"object-viewer",
"json-viewer",
"data-visualization",
"tree-view",
"debug-tool",
"object-inspector",
"frontend"
],
"author": "Vo Thanh Dat",
"license": "MIT",
"engines": {
"node": ">=22.0.0",
"yarn": ">=4.0.0"
},
"peerDependencies": {
"react": "19",
"react-dom": "19"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "4.0.8",
"@vitest/ui": "^4.0.8",
"babel-plugin-react-compiler": "^1.0.0",
"happy-dom": "^20.0.10",
"jsdom": "^27.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"typescript": "^5.9.3",
"unplugin-macros": "^0.18.3",
"vite": "7",
"vite-bundle-analyzer": "^1.1.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.8"
},
"packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728"
}