-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.22 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.22 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@gtk-grafana/react-json-tree",
"version": "0.1.0",
"description": "React JSON Viewer Component, Extracted from redux-devtools",
"keywords": [
"react",
"json viewer"
],
"homepage": "https://github.com/grafana/react-json-tree",
"bugs": {
"url": "https://github.com/grafana/react-json-tree/issues"
},
"license": "MIT",
"author": "Galen Kistler <gk@galenkistler.com> (http://github.com/gtk-grafana)",
"contributors": [
{
"name": "Shu Uesugi",
"email": "shu@chibicode.com",
"url": "http://github.com/chibicode"
},
{
"name": "Alexander Kuznetsov",
"email": "alexkuz@gmail.com",
"url": "http://kuzya.org/"
},
{
"name": "Dave Vedder",
"email": "veddermatic@gmail.com",
"url": "http://www.eskimospy.com/"
},
{
"name": "Daniele Zannotti",
"email": "dzannotti@me.com",
"url": "http://www.github.com/dzannotti"
},
{
"name": "Mihail Diordiev",
"email": "zalmoxisus@gmail.com",
"url": "https://github.com/zalmoxisus"
}
],
"type": "module",
"scripts": {
"dev": "yarn vite build --mode development --watch",
"build": "yarn vite build --mode production --minify",
"lint": "eslint . --ext ts,tsx",
"lint:fix": "eslint . --ext ts,tsx --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"stylelint": "stylelint **/*.css",
"stylelint:fix": "stylelint **/*.scss --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"prepublishOnly": "vitest run && yarn run build",
"prepare": "husky"
},
"module": "./dist/main.js",
"files": [
"dist"
],
"types": "./dist/src/main.d.ts",
"peerDependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@eslint/js": "9.21.0",
"@mdx-js/rollup": "3.1.1",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.1",
"@types/node": "22.13.8",
"@types/react": "19.2.8",
"@vitejs/plugin-react": "4.3.4",
"@vitejs/plugin-react-swc": "3.11.0",
"@vitest/coverage-v8": "3.0.7",
"@vitest/ui": "3.0.7",
"autoprefixer": "10.4.23",
"clsx": "2.1.1",
"eslint": "9.26.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.19",
"glob": "11.1.0",
"globals": "16.0.0",
"husky": "9.1.7",
"jsdom": "26.0.0",
"prettier": "3.5.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-test-renderer": "18.3.1",
"sass-embedded": "1.85.1",
"stylelint": "16.15.0",
"stylelint-config-standard": "37.0.0",
"terser": "5.39.0",
"typescript": "5.7.3",
"typescript-eslint": "8.25.0",
"vite": "7.3.2",
"vite-bundle-analyzer": "1.2.3",
"vite-plugin-css-injected-by-js": "3.5.2",
"vite-plugin-dts": "4.5.4",
"vite-plugin-externals": "0.6.2",
"vite-plugin-lib-inject-css": "2.2.2",
"vitest": "3.0.7"
},
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gtk-grafana/react-json-tree.git"
},
"private": false,
"directories": {
"example": "examples"
},
"dependencies": {}
}