* feat: add rrweb web-extension package * refactor: make the extension suitable for manifest v3 * update tsconfig.json * use version_name rather than recorder_version in manifest.json * update manifest.json * enable to keep recording after changing tabs * enable to record between tabs and urls * fix CI error * try to fix CI error * feat: add pause and resume buttons * feat: add a link to new session after recording * improve session list * refactor: migrate session storage from chrome local storage to indexedDB * feat: add pagination to session list * fix: multiple recorders are started after pausing and resuming process * fix: can't stop recording on firefox browser * update type import of 'eventWithTime' * fix CI error * doc: add readme * Apply suggestions from Justin's code review Co-authored-by: Justin Halsall <Juice10@users.noreply.github.com> * refactor: make use of webNavigation API to implement recording consistent during page navigation * fix firefox compatibility issue and add title to pages * add mouseleave listener to enhance the recording liability * fix firefox compatibility issue and improve the experience of recording resume after closing tabs * update tsconfig * upgrade vite-plugin-web-extension config to fix some bugs on facebook web page * update import links * refactor: cross tab recording mechanism apply Justin's suggestion * refactor: slipt util/index.ts into multiple files * implement cross-origin iframe recording * fix: regression of issue: ShadowHost can't be a string (issue 941) * refactor shadow dom recording to make tests cover key code * Apply formatting changes * increase the node memory limitation to avoid CI failure * Create lovely-pears-cross.md * Apply formatting changes * Update packages/web-extension/package.json * Update .changeset/lovely-pears-cross.md * update change logs * delete duplicated property --------- Co-authored-by: Justin Halsall <Juice10@users.noreply.github.com>
48 lines
1.6 KiB
JSON
48 lines
1.6 KiB
JSON
{
|
|
"name": "@rrweb/web-extension",
|
|
"private": true,
|
|
"version": "2.0.0",
|
|
"description": "The web extension of rrweb which helps to run rrweb on any website out of box",
|
|
"author": "rrweb-io",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev:chrome": "cross-env TARGET_BROWSER=chrome vite dev",
|
|
"dev:firefox": "cross-env TARGET_BROWSER=firefox vite dev",
|
|
"build:chrome": "cross-env TARGET_BROWSER=chrome vite build",
|
|
"build:firefox": "cross-env TARGET_BROWSER=firefox vite build",
|
|
"pack:chrome": "cross-env TARGET_BROWSER=chrome ZIP=true vite build",
|
|
"pack:firefox": "cross-env TARGET_BROWSER=firefox ZIP=true vite build",
|
|
"check-types": "tsc -noEmit",
|
|
"prepublish": "npm run pack:chrome && npm run pack:firefox"
|
|
},
|
|
"devDependencies": {
|
|
"@rrweb/types": "^2.0.0-alpha.4",
|
|
"@types/react-dom": "^18.0.6",
|
|
"@types/webextension-polyfill": "^0.9.1",
|
|
"@vitejs/plugin-react": "^2.1.0",
|
|
"cross-env": "^7.0.3",
|
|
"type-fest": "^2.19.0",
|
|
"typescript": "^4.7.3",
|
|
"vite": "^3.1.8",
|
|
"vite-plugin-web-extension": "^1.4.5",
|
|
"vite-plugin-zip": "^1.0.1",
|
|
"webextension-polyfill": "^0.10.0"
|
|
},
|
|
"dependencies": {
|
|
"@chakra-ui/react": "^2.3.4",
|
|
"@emotion/react": "^11.10.4",
|
|
"@emotion/styled": "^11.10.4",
|
|
"@tanstack/react-table": "^8.5.22",
|
|
"framer-motion": "^7.3.6",
|
|
"idb": "^7.1.1",
|
|
"mitt": "^3.0.0",
|
|
"nanoid": "^4.0.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-icons": "^4.4.0",
|
|
"react-router-dom": "^6.4.1",
|
|
"rrweb": "^2.0.0-alpha.4",
|
|
"rrweb-player": "^1.0.0-alpha.4"
|
|
}
|
|
}
|