{ "name": "@hedgedoc/commons", "private": true, "version": "0.4.0", "description": "Common code between frontend and backend", "author": "The HedgeDoc Authors", "license": "AGPL-3.0", "scripts": { "build": "./build.sh", "test": "jest", "test:ci": "jest --ci", "prepublish": "rm -rf dist && yarn lint && yarn build && yarn test", "lint": "eslint src --ext .ts", "lint:fix": "eslint --fix --ext .ts src" }, "type": "module", "source": "src/index.ts", "main": "dist/cjs/index.js", "types": "dist/cjs/index.d.ts", "module": "./dist/esm/index.js", "exports": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.ts", "default": "./dist/cjs/index.js" } }, "files": [ "LICENSES/*", "package.json", "README.md", "dist/**" ], "browserslist": [ "node> 12" ], "repository": { "type": "git", "url": "https://github.com/hedgedoc/hedgedoc.git" }, "dependencies": { "domhandler": "5.0.3", "eventemitter2": "6.4.9", "joi": "17.9.2", "js-yaml": "4.1.0", "reveal.js": "4.5.0", "ws": "8.13.0", "yjs": "13.6.7" }, "devDependencies": { "@jest/types": "29.6.3", "@mrdrogdrog/optional": "1.2.1", "@types/js-yaml": "4.0.5", "@types/ws": "8.5.5", "@typescript-eslint/eslint-plugin": "6.4.1", "@typescript-eslint/parser": "6.4.1", "eslint": "8.48.0", "eslint-config-prettier": "9.0.0", "eslint-plugin-jest": "27.2.3", "eslint-plugin-prettier": "5.0.0", "jest": "29.6.4", "prettier": "3.0.2", "ts-jest": "29.1.1", "typescript": "5.2.2" }, "packageManager": "yarn@3.6.3" }