-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.86 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.86 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@electron/devtron",
"version": "0.0.0-development",
"description": "Electron DevTools Extension to track IPC events",
"repository": "https://github.com/electron/devtron",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/mjs/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"./service-worker-preload": {
"types": "./dist/types/lib/service-worker-preload.d.ts",
"import": "./dist/mjs/service-worker-preload.mjs",
"require": "./dist/cjs/service-worker-preload.cjs"
},
"./renderer-preload": {
"types": "./dist/types/lib/renderer-preload.d.ts",
"import": "./dist/mjs/renderer-preload.mjs",
"require": "./dist/cjs/renderer-preload.cjs"
}
},
"scripts": {
"clean": "node -e \"fs.rmSync('dist', { recursive: true, force: true })\"",
"build:browser": "cross-env NODE_OPTIONS='--import=tsx' webpack --config webpack.extension.config.ts",
"build:types": "tsc -b ./tsconfig.types.json",
"build:node": "cross-env NODE_OPTIONS='--import=tsx' webpack --config webpack.node.config.ts",
"build": "npm run clean && npm run build:node && npm run build:types && npm run build:browser",
"dev": "cross-env NODE_OPTIONS='--import=tsx' webpack serve --config webpack.dev.config.ts",
"lint:eslint": "npx eslint -c eslint.config.mjs",
"lint": "npx tsc --noEmit && prettier . --check --experimental-cli",
"lint:fix": "npx prettier . --write --experimental-cli && npm run lint:eslint --fix",
"prepublishOnly": "npm run build",
"test": "mocha spec-electron-setup/scripts/mocha-cli.ts"
},
"author": "Hitarth Rajput",
"license": "MIT",
"keywords": [
"Electron",
"Chrome",
"Chromium",
"devtools",
"developer tools",
"ipc"
],
"bugs": {
"url": "https://github.com/electron/devtron/issues"
},
"homepage": "https://github.com/electron/devtron",
"publishConfig": {
"provenance": true
},
"engines": {
"node": ">=22.12.0"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@tsconfig/node22": "^22.0.2",
"@types/chai": "^5.2.2",
"@types/chrome": "^0.0.326",
"@types/mocha": "^10.0.10",
"@types/node": "~22.10.7",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/webpack-env": "^1.18.8",
"chai": "^5.2.1",
"colors": "^1.4.0",
"copy-webpack-plugin": "^13.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"electron": "^36.5.0",
"eslint": "^9.28.0",
"eslint-plugin-chai-friendly": "^1.1.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unicorn": "^59.0.1",
"globals": "^16.2.0",
"html-webpack-plugin": "^5.6.3",
"mocha": "^11.7.1",
"postcss": "^8.5.4",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.2.1",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.13",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.17",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"@fontsource-variable/roboto": "^5.2.5",
"@fontsource/space-mono": "^5.2.5",
"@microlink/react-json-view": "^1.26.2",
"ag-grid-community": "^34.1.2",
"ag-grid-react": "^34.1.2",
"denque": "^2.1.0",
"lucide-react": "^0.513.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"files": [
"dist/",
"package.json",
"LICENSE",
"README.md",
"!**/*.tsbuildinfo"
],
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f",
"dependenciesMeta": {
"electron": {
"built": true
}
}
}