mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 09:16:30 -05:00
b6ef68d081
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
67 lines
1.7 KiB
JSON
67 lines
1.7 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/**"
|
|
],
|
|
"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.6"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/types": "29.6.1",
|
|
"@mrdrogdrog/optional": "1.1.0",
|
|
"@types/js-yaml": "4.0.5",
|
|
"@types/ws": "8.5.5",
|
|
"@typescript-eslint/eslint-plugin": "5.62.0",
|
|
"@typescript-eslint/parser": "5.62.0",
|
|
"eslint": "8.44.0",
|
|
"eslint-config-prettier": "8.8.0",
|
|
"eslint-plugin-jest": "27.2.2",
|
|
"eslint-plugin-prettier": "4.2.1",
|
|
"jest": "29.6.1",
|
|
"microbundle": "0.15.1",
|
|
"prettier": "2.8.8",
|
|
"ts-jest": "29.1.1",
|
|
"typescript": "5.1.6"
|
|
},
|
|
"packageManager": "yarn@3.6.1"
|
|
}
|