Files
rrweb/packages/types/package.json
David Newell 5a789385a3 chore: abstract types to shared package (#1593)
* chore: update types

* small typing change

* fix typing issue

* typed node

* add extra lint skip

* add changeset

---------

Co-authored-by: Eoghan Murray <eoghan@getthere.ie>
Co-authored-by: Justin Halsall <Juice10@users.noreply.github.com>
2024-12-06 14:17:24 +01:00

56 lines
1.2 KiB
JSON

{
"name": "@rrweb/types",
"version": "2.0.0-alpha.17",
"publishConfig": {
"access": "public"
},
"keywords": [
"rrweb",
"@rrweb/types"
],
"scripts": {
"dev": "vite build --watch",
"build": "yarn turbo run prepublish",
"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/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",
"unpkg": "./dist/types.umd.cjs",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/types.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/types.umd.cjs"
}
}
},
"files": [
"dist",
"package.json"
],
"devDependencies": {
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1"
},
"browserslist": [
"supports es6-class"
]
}