* Add linting * Add issue templates and docs * Add root eslint config and remove tslint * Autofix lint issues
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"description": "record and replay the web",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/rrweb-io/rrweb.git"
|
|
},
|
|
"keywords": [
|
|
"rrweb"
|
|
],
|
|
"author": "yanzhen@smartx.com",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/rrweb-io/rrweb/issues"
|
|
},
|
|
"private": true,
|
|
"homepage": "https://github.com/rrweb-io/rrweb#readme",
|
|
"workspaces": [
|
|
"packages/rrweb",
|
|
"packages/rrweb-snapshot",
|
|
"packages/rrweb-player",
|
|
"packages/rrdom"
|
|
],
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.25.0",
|
|
"@typescript-eslint/parser": "^5.25.0",
|
|
"concurrently": "^7.1.0",
|
|
"eslint": "^8.15.0",
|
|
"lerna": "^4.0.0",
|
|
"markdownlint": "^0.25.1",
|
|
"markdownlint-cli": "^0.31.1",
|
|
"typescript": "^4.6.4"
|
|
},
|
|
"scripts": {
|
|
"lerna": "lerna",
|
|
"build:all": "yarn lerna run prepublish",
|
|
"test": "yarn lerna run test",
|
|
"test:watch": "yarn lerna run test:watch --parallel",
|
|
"dev": "yarn lerna run dev --parallel",
|
|
"repl": "cd packages/rrweb && npm run repl",
|
|
"lint": "yarn run concurrently --success=all -r -m=1 'yarn run markdownlint docs' 'yarn eslint packages/*/src --ext .ts,.tsx,.js,.jsx,.svelte'"
|
|
},
|
|
"resolutions": {
|
|
"**/jsdom/cssom": "^0.5.0"
|
|
}
|
|
}
|