Files
rrweb/packages/types/package.json
Yun Feng 78935ea820 move rrvideo to monorepo (#1181)
* 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>
2026-04-01 12:00:00 +08:00

52 lines
1.1 KiB
JSON

{
"name": "@rrweb/types",
"version": "2.0.0-alpha.6",
"publishConfig": {
"access": "public"
},
"keywords": [
"rrweb",
"@rrweb/types"
],
"scripts": {
"dev": "vite",
"build": "tsc -noEmit && vite build",
"check-types": "tsc -noEmit",
"prepublish": "npm run build",
"lint": "yarn eslint src/**/*.ts"
},
"homepage": "https://github.com/rrweb-io/rrweb/tree/main/packages/@rrweb/types#readme",
"bugs": {
"url": "https://github.com/rrweb-io/rrweb/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rrweb-io/rrweb.git"
},
"license": "MIT",
"type": "module",
"main": "./dist/types.umd.cjs",
"module": "./dist/types.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/types.js",
"require": "./dist/types.umd.cjs"
}
},
"files": [
"build",
"dist"
],
"devDependencies": {
"vite": "^3.2.0-beta.2",
"vite-plugin-dts": "^1.6.6"
},
"dependencies": {
"rrweb-snapshot": "^2.0.0-alpha.6"
},
"browserslist": [
"supports es6-class"
]
}