* Version Packages (alpha) * Tweak description of file path changes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Justin Halsall <Juice10@users.noreply.github.com>
65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"name": "rrdom-nodejs",
|
|
"version": "2.0.0-alpha.15",
|
|
"scripts": {
|
|
"dev": "vite build --watch",
|
|
"build": "tsc -noEmit && vite build",
|
|
"check-types": "tsc -noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest watch",
|
|
"prepublish": "npm run build",
|
|
"lint": "yarn eslint src/**/*.ts"
|
|
},
|
|
"keywords": [
|
|
"rrweb",
|
|
"rrdom-nodejs"
|
|
],
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"main": "./dist/rrdom-nodejs.umd.cjs",
|
|
"module": "./dist/rrdom-nodejs.js",
|
|
"unpkg": "./dist/rrdom-nodejs.umd.cjs",
|
|
"typings": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/rrdom-nodejs.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/rrdom-nodejs.umd.cjs"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"devDependencies": {
|
|
"@types/cssom": "^0.4.1",
|
|
"@types/cssstyle": "^2.2.1",
|
|
"@types/nwsapi": "^2.2.2",
|
|
"@types/puppeteer": "^5.4.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.23.0",
|
|
"@typescript-eslint/parser": "^5.23.0",
|
|
"compare-versions": "^4.1.3",
|
|
"eslint": "^8.15.0",
|
|
"puppeteer": "^9.1.1",
|
|
"vite": "^5.2.8",
|
|
"vite-plugin-dts": "^3.8.1",
|
|
"vitest": "^1.4.0",
|
|
"typescript": "^4.7.3"
|
|
},
|
|
"dependencies": {
|
|
"cssom": "^0.5.0",
|
|
"cssstyle": "^2.3.0",
|
|
"nwsapi": "^2.2.0",
|
|
"rrdom": "^2.0.0-alpha.15",
|
|
"rrweb-snapshot": "^2.0.0-alpha.15"
|
|
},
|
|
"browserslist": [
|
|
"supports es6-class"
|
|
]
|
|
}
|