-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.2 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.2 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
{
"name": "tide-debug-modal",
"version": "1.0.0",
"description": "A React component for debugging HTTP requests and terminal logs",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "bunx vite",
"build": "bunx vite build",
"preview": "bunx vite preview",
"build:lib": "bunx vite build --config vite.lib.config.mjs",
"watch:lib": "bunx vite build --config vite.lib.config.mjs --watch"
},
"keywords": ["react", "debug", "http", "terminal", "developer-tools"],
"author": "TIDE",
"license": "MIT",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"react-json-view": "^1.21.3"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^4.0.0"
},
"dependencies": {
"@eslint/js": "^9.21.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"react-json-view": "^1.21.3",
"vite-plugin-eslint": "^1.8.1",
"ws": "^8.12.0"
}
}