- 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`
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "rrdom",
|
|
"version": "2.0.0-alpha.15",
|
|
"homepage": "https://github.com/rrweb-io/rrweb/tree/main/packages/rrdom#readme",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"main": "./dist/rrdom.cjs",
|
|
"module": "./dist/rrdom.js",
|
|
"unpkg": "./dist/rrdom.umd.cjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/rrdom.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/rrdom.cjs"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/rrweb-io/rrweb.git"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite build --watch",
|
|
"build": "yarn turbo run prepublish",
|
|
"check-types": "tsc -noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"prepublish": "tsc -noEmit && vite build",
|
|
"lint": "yarn eslint src/**/*.ts"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/rrweb-io/rrweb/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@rrweb/types": "^2.0.0-alpha.15",
|
|
"@types/puppeteer": "^5.4.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.23.0",
|
|
"@typescript-eslint/parser": "^5.23.0",
|
|
"eslint": "^8.15.0",
|
|
"puppeteer": "^17.1.3",
|
|
"typescript": "^5.4.5",
|
|
"vite": "^5.3.1",
|
|
"vite-plugin-dts": "^3.9.1"
|
|
},
|
|
"dependencies": {
|
|
"rrweb-snapshot": "^2.0.0-alpha.15"
|
|
}
|
|
}
|