-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
83 lines (83 loc) · 2.37 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
{
"name": "@melloware/react-logviewer",
"version": "6.1.2",
"description": "React Lazy LogViewer",
"keywords": [
"react",
"log",
"viewer",
"logviewer",
"lazy",
"lazylog"
],
"author": "Melloware <[email protected]> (https://github.com/melloware)",
"contributors": [
"Eli Perelman (https://github.com/eliperelman)",
"Hassan Ali (http://hassanali.me)",
"Melloware <[email protected]> (https://github.com/melloware)"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/melloware/react-logviewer.git"
},
"bugs": {
"url": "https://github.com/melloware/react-logviewer/issues"
},
"homepage": "https://melloware.github.io/react-logviewer/",
"license": "MPL-2.0",
"scripts": {
"dev": "vite",
"build": "rimraf dist && rollup -c",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o docs/",
"init-msw": "msw init public/",
"prepack": "npm run build"
},
"dependencies": {
"hotkeys-js": "3.13.9",
"mitt": "3.0.1",
"react-string-replace": "1.1.1",
"virtua": "0.39.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.18.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-storybook": "^0.11.2",
"msw": "^2.7.0",
"msw-storybook-addon": "^2.0.4",
"prop-types": "^15.8.1",
"rimraf": "^6.0.1",
"rollup": "^2.79.2",
"rollup-plugin-dts": "4.2.3",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^8.4.7",
"vite": "^6.0.7"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"packageManager": "[email protected]+sha1.f3d2cd2bddf0fa447a13b80e166d1b85a7823486"
}