Files
rrweb/packages/plugins/rrweb-plugin-sequential-id-replay/package.json
Justin Halsall 5bb69155c5 Improve development tooling (#1516)
- Running `yarn build` in a `packages/*/` directory will trigger build of all dependencies too, and cache them if possible.
- Fix for `yarn dev` breaking for `rrweb` package whenever changing files in `rrweb` package
- Update typescript, turbo, vite and vite-plugin-dts
- Require `workspaces-to-typescript-project-references` from `prepublish`
2026-04-01 12:00:00 +08:00

56 lines
1.4 KiB
JSON

{
"name": "@rrweb/rrweb-plugin-sequential-id-replay",
"version": "2.0.0-alpha.15",
"description": "",
"type": "module",
"main": "./dist/rrweb-plugin-sequential-id-replay.umd.cjs",
"module": "./dist/rrweb-plugin-sequential-id-replay.js",
"unpkg": "./dist/rrweb-plugin-sequential-id-replay.umd.cjs",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/rrweb-plugin-sequential-id-replay.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/rrweb-plugin-sequential-id-replay.umd.cjs"
}
}
},
"files": [
"dist",
"package.json"
],
"scripts": {
"dev": "vite build --watch",
"build": "yarn turbo run prepublish",
"check-types": "tsc -noEmit",
"prepublish": "tsc -noEmit && vite build"
},
"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",
"devDependencies": {
"@rrweb/rrweb-plugin-sequential-id-record": "^2.0.0-alpha.15",
"rrweb": "^2.0.0-alpha.15",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1"
},
"peerDependencies": {
"rrweb": "^2.0.0-alpha.15"
}
}