* first commit * rrvideo v0.1.0 First version of rrvideo. 1. Use as a Node.JS lib. 2. Use as a CLI. Features are implemented via puppeteer, ffmpeg and rrweb-player. * add readme * update publish script * add node env in cli file and change package.json bin to same like README (#4) Co-authored-by: Xu Yinjie <xuyinjie@xiaobangtouzi.com> * release 0.2.0 * fix #6 avoid assign undefined to config * Fix: Solve the inconsistency between rrvideo and the real recorded page rendering when rendering the page with a headless browser (https://github.com/rrweb-io/rrvideo/pull/26) Author: xujiujiu <906784584@qq.com> --------- Co-authored-by: xujiujiu <906784584@qq.com> * refactor rrvideo 1. refactor code 2. change monorepo config 3. remove separate TS dependencies * add changeset * fix: eslint errors --------- Co-authored-by: Yanzhen Yu <yanzhen@smartx.com> Co-authored-by: xyj <593500664@qq.com> Co-authored-by: Xu Yinjie <xuyinjie@xiaobangtouzi.com> Co-authored-by: xujiujiu <906784584@qq.com>
63 lines
1.6 KiB
JSON
63 lines
1.6 KiB
JSON
{
|
|
"name": "rrweb-player",
|
|
"version": "2.0.0-alpha.6",
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^22.0.0",
|
|
"@rollup/plugin-node-resolve": "^13.2.1",
|
|
"@rrweb/types": "^2.0.0-alpha.6",
|
|
"@types/offscreencanvas": "^2019.6.4",
|
|
"eslint-config-google": "^0.14.0",
|
|
"eslint-plugin-svelte3": "^4.0.0",
|
|
"postcss-easy-import": "^3.0.0",
|
|
"rollup": "^2.71.1",
|
|
"rollup-plugin-css-only": "^3.1.0",
|
|
"rollup-plugin-livereload": "^2.0.0",
|
|
"rollup-plugin-svelte": "^7.1.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-typescript2": "^0.31.2",
|
|
"rollup-plugin-web-worker-loader": "^1.6.1",
|
|
"sirv-cli": "^0.4.4",
|
|
"svelte": "^3.2.0",
|
|
"svelte-check": "^1.4.0",
|
|
"svelte-preprocess": "^4.0.0",
|
|
"tslib": "^2.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@tsconfig/svelte": "^1.0.0",
|
|
"rrweb": "^2.0.0-alpha.6"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"dev": "rollup -c -w",
|
|
"prepublishOnly": "yarn build",
|
|
"start": "sirv public",
|
|
"validate": "svelte-check",
|
|
"prepublish": "yarn build",
|
|
"lint": "yarn eslint src/**/*.ts"
|
|
},
|
|
"description": "rrweb's replayer UI",
|
|
"main": "lib/index.cjs",
|
|
"module": "dist/index.mjs",
|
|
"unpkg": "dist/index.js",
|
|
"files": [
|
|
"lib",
|
|
"dist",
|
|
"typings"
|
|
],
|
|
"typings": "typings/index.d.ts",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/rrweb-io/rrweb.git"
|
|
},
|
|
"keywords": [
|
|
"rrweb"
|
|
],
|
|
"author": "yanzhen@smartx.com",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/rrweb-io/rrweb/issues"
|
|
},
|
|
"homepage": "https://github.com/rrweb-io/rrweb#readme"
|
|
}
|