Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "@rrweb/record",
|
|
"version": "2.0.0-alpha.20",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"rrweb",
|
|
"@rrweb/record"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite build --watch",
|
|
"build": "yarn turbo run prepublish",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest watch",
|
|
"check-types": "tsc -noEmit",
|
|
"prepublish": "tsc -noEmit && vite build",
|
|
"lint": "yarn eslint src/**/*.ts"
|
|
},
|
|
"homepage": "https://github.com/rrweb-io/rrweb/tree/main/packages/@rrweb/record#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/record.cjs",
|
|
"module": "./dist/record.js",
|
|
"unpkg": "./dist/record.umd.cjs",
|
|
"typings": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/record.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/record.cjs"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"devDependencies": {
|
|
"puppeteer": "^20.9.0",
|
|
"vite": "^5.3.1",
|
|
"vite-plugin-dts": "^3.9.1",
|
|
"vitest": "^1.4.0",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"dependencies": {
|
|
"@rrweb/types": "^2.0.0-alpha.20",
|
|
"rrweb": "^2.0.0-alpha.20",
|
|
"@rrweb/utils": "^2.0.0-alpha.20"
|
|
},
|
|
"browserslist": [
|
|
"supports es6-class"
|
|
]
|
|
}
|