-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.62 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
{
"name": "react-console-viewer",
"version": "0.0.3",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./dist/style.css": "./dist/style.css"
},
"files": ["dist"],
"description": "A React component that displays console logs",
"scripts": {
"build": "vite build"
},
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"clsx": "^2.1.1",
"fast-equals": "^5.0.1",
"linkifyjs": "^2.1.9",
"lucide-react": "^0.400.0",
"react-inspector": "^6.0.2",
"tailwind-merge": "^2.4.0"
},
"devDependencies": {
"@types/enzyme": "^3.10.18",
"@types/linkifyjs": "2.1.3",
"@types/node": "^20.14.9",
"@types/react": "^16.14.60",
"@types/react-dom": "^16.9.24",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.39",
"prettier": "^2.8.8",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-plugin-dts": "^3.9.1"
},
"peerDependencies": {
"react": "^15.x || ^16.x || ^17.x || ^18.x",
"react-dom": "^15.x || ^16.x || ^17.x || ^18.x"
},
"keywords": ["itell", "object-viewer", "react-inspector"],
"homepage": "https://github.com/learlab/console",
"repository": {
"type": "git",
"url": "https://github.com/learlab/console"
},
"bugs": {
"url": "https://github.com/learlab/console/issues"
},
"author": "Qiushi Yan <qiushi.yann@gmail.com>",
"license": "MIT"
}