-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"name": "chrome-inspector",
"version": "1.0.8",
"description": "A lightweight interface for Chrome Inspector, providing Elements and Styles Panel information via the Chrome DevTools Protocol (CDP). Supports Puppeteer, Playwright, Chrome Extensions, and other CDP clients.",
"license": "MIT",
"files": [
"dist/",
"README.md"
],
"repository": {
"type": "git",
"url": "git@github.com:devtoolcss/chrome-inspector.git"
},
"homepage": "https://github.com/devtoolcss/chrome-inspector#readme",
"keywords": [
"chrome",
"inspector",
"devtools",
"devtools-protocol",
"puppeteer",
"playwright",
"chrome-extension"
],
"publishConfig": {
"provenance": true
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.browser.js",
"import": "./dist/index.js"
}
},
"module": "dist/index.js",
"scripts": {
"build": "tsc && node ./scripts/copy-ext-no-icon.js",
"prepare": "pnpm build"
},
"dependencies": {
"@devtoolcss/parser": "^1.0.1",
"jsdom": "^27.0.1"
},
"devDependencies": {
"@types/chrome": "^0.1.24",
"@types/jsdom": "^21.1.7",
"devtools-protocol": "^0.0.1532728",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.19.1-oidc-test.3+sha512.e5961a4b56bb37620f97b65da4ca56216634bf39ed358eda925f0f036534d458fa249d93ed0021410523f8bb7ed8512b61fe5532ed3e81777793366c6be026b5"
}