hedgedoc/commons/package.json
Erik Michelson 305b6f5910 misc: add turbo monorepo util
Co-authored-by: Tilman Vatteroth <git@tilmanvatteroth.de>
Co-authored-by: David Mehren <git@herrmehren.de>
Co-authored-by: Erik Michelson <github@erik.michelson.eu>
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
Signed-off-by: David Mehren <git@herrmehren.de>
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2023-02-07 21:38:40 +01:00

62 lines
1.6 KiB
JSON

{
"name": "@hedgedoc/commons",
"private": true,
"version": "0.3.0",
"description": "Common code between frontend and backend",
"author": "The HedgeDoc Authors",
"license": "AGPL-3.0",
"scripts": {
"build": "rm -rf dist && microbundle",
"build:watch": "rm -rf dist && microbundle -w",
"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",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"files": [
"LICENSES/*",
"package.json",
"README.md",
"dist/**"
],
"repository": {
"type": "git",
"url": "https://github.com/hedgedoc/hedgedoc.git"
},
"dependencies": {
"eventemitter2": "^6.4.9",
"isomorphic-ws": "^5.0.0",
"lib0": "^0.2.51",
"ws": "^8.0.0",
"y-protocols": "^1.0.0",
"yjs": "13.5.45"
},
"devDependencies": {
"@jest/types": "29.4.1",
"@mrdrogdrog/optional": "1.1.0",
"@types/ws": "8.5.4",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.4.1",
"microbundle": "0.15.1",
"prettier": "2.8.3",
"ts-jest": "29.0.5",
"typescript": "4.9.5"
},
"packageManager": "yarn@3.4.1"
}