Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "1.1.0",
"description": "Browser devtools extension for debugging WebdriverIO tests.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/devtools.git",
"directory": "packages/devtools-app"
},
"exports": "./src/index.ts",
"scripts": {
"dev": "vite build --watch",
Expand Down
5 changes: 5 additions & 0 deletions packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
"description": "Backend service to spin up WebdriverIO Devtools",
"author": "Christian Bromann <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/devtools.git",
"directory": "packages/devtools-backend"
},
"type": "module",
"exports": {
".": "./dist/index.js"
Expand Down
7 changes: 6 additions & 1 deletion packages/script/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"name": "@wdio/devtools-script",
"version": "1.0.0",
"version": "1.1.0",
"description": "Script to be injected into a page to trace the page",
"author": "Christian Bromann <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/devtools.git",
"directory": "packages/devtools-script"
},
"type": "module",
"types": "./types.d.ts",
"exports": "./dist/script.js",
Expand Down
5 changes: 5 additions & 0 deletions packages/service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "10.1.0",
"description": "Hook up WebdriverIO with DevTools",
"author": "Christian Bromann <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/devtools.git",
"directory": "packages/devtools-service"
},
"type": "module",
"exports": {
".": {
Expand Down