-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.5 KB
/
package.json
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
118
119
120
121
122
123
{
"name": "@gtk-grafana/react-json-tree",
"version": "0.0.9",
"description": "React JSON Viewer Component, Extracted from redux-devtools",
"keywords": [
"react",
"json viewer"
],
"homepage": "https://github.com/gtk-grafana/react-json-tree",
"bugs": {
"url": "https://github.com/gtk-grafana/react-json-tree/issues"
},
"license": "MIT",
"author": "Galen Kistler <[email protected]> (http://github.com/gtk-grafana)",
"contributors": [
{
"name": "Shu Uesugi",
"email": "[email protected]",
"url": "http://github.com/chibicode"
},
{
"name": "Alexander Kuznetsov",
"email": "[email protected]",
"url": "http://kuzya.org/"
},
{
"name": "Dave Vedder",
"email": "[email protected]",
"url": "http://www.eskimospy.com/"
},
{
"name": "Daniele Zannotti",
"email": "[email protected]",
"url": "http://www.github.com/dzannotti"
},
{
"name": "Mihail Diordiev",
"email": "[email protected]",
"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",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"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": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@chromatic-com/storybook": "3.2.5",
"@eslint/js": "9.21.0",
"@mdx-js/rollup": "^3.1.0",
"@storybook/addon-essentials": "8.6.3",
"@storybook/addon-interactions": "8.6.3",
"@storybook/addon-links": "8.6.3",
"@storybook/addon-onboarding": "8.6.3",
"@storybook/blocks": "8.6.3",
"@testing-library/react": "16.2.0",
"@types/node": "22.13.8",
"@types/react": "^19.0.10",
"@vitejs/plugin-react": "4.3.4",
"@vitejs/plugin-react-swc": "^3.8.0",
"@vitest/coverage-v8": "3.0.7",
"@vitest/ui": "3.0.7",
"autoprefixer": "10.4.20",
"clsx": "2.1.1",
"eslint": "9.21.0",
"eslint-config-prettier": "10.0.2",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.19",
"eslint-plugin-storybook": "0.11.3",
"glob": "11.0.1",
"globals": "16.0.0",
"jsdom": "26.0.0",
"prettier": "3.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"sass-embedded": "^1.85.1",
"storybook": "8.6.3",
"stylelint": "16.15.0",
"stylelint-config-standard": "37.0.0",
"terser": "^5.39.0",
"typescript": "5.7.3",
"typescript-eslint": "8.25.0",
"vite": "6.2.3",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "4.5.1",
"vite-plugin-externals": "^0.6.2",
"vite-plugin-lib-inject-css": "2.2.1",
"vitest": "3.0.7",
"husky": "^9.1.7"
},
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gtk-grafana/react-json-tree.git"
},
"private": false,
"directories": {
"example": "examples"
}
}