-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "@sahiljena/react-webview-debugger",
"version": "1.2.0",
"description": "A lightweight WebView Debugger panel for cookies, storage, console, network, and features",
"author": "Sahil Jena",
"license": "MIT",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepare": "tsup",
"release:patch": "npm run build && npm version patch && npm publish --access public && git push && git push --tags",
"release:minor": "npm run build && npm version minor && npm publish --access public && git push && git push --tags",
"release:major": "npm run build && npm version major && npm publish --access public && git push && git push --tags"
},
"keywords": [
"react",
"debugger",
"webview",
"devtools",
"storage",
"network"
],
"dependencies": {
"jszip": "^3.10.1",
"react": ">=17",
"react-dom": ">=17",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"eslint": "^9.39.1"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"files": [
"dist"
]
}