2022-12-04 16:41:39 -05:00
|
|
|
{
|
|
|
|
"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",
|
2022-12-11 18:46:30 -05:00
|
|
|
"test:ci": "jest --ci",
|
2022-12-04 16:41:39 -05:00
|
|
|
"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/**"
|
|
|
|
],
|
2023-03-22 15:21:40 -04:00
|
|
|
"browserslist": [
|
|
|
|
"node> 12"
|
|
|
|
],
|
2022-12-04 16:41:39 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/hedgedoc/hedgedoc.git"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-04-08 15:31:27 -04:00
|
|
|
"domhandler": "5.0.3",
|
2023-02-09 07:39:33 -05:00
|
|
|
"eventemitter2": "6.4.9",
|
2023-05-19 05:49:29 -04:00
|
|
|
"joi": "17.9.2",
|
2023-04-13 08:30:16 -04:00
|
|
|
"reveal.js": "4.5.0",
|
2023-03-11 14:57:47 -05:00
|
|
|
"ws": "8.13.0",
|
2023-05-04 10:03:02 -04:00
|
|
|
"yjs": "13.6.1"
|
2022-12-04 16:41:39 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-03-11 03:27:57 -05:00
|
|
|
"@jest/types": "29.5.0",
|
2023-02-05 08:57:11 -05:00
|
|
|
"@mrdrogdrog/optional": "1.1.0",
|
2022-12-30 04:48:44 -05:00
|
|
|
"@types/ws": "8.5.4",
|
2023-05-29 16:43:53 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.59.8",
|
|
|
|
"@typescript-eslint/parser": "5.59.8",
|
2023-06-02 20:42:02 -04:00
|
|
|
"eslint": "8.42.0",
|
2023-03-20 16:57:55 -04:00
|
|
|
"eslint-config-prettier": "8.8.0",
|
2023-01-07 05:01:28 -05:00
|
|
|
"eslint-plugin-jest": "27.2.1",
|
2022-12-04 16:41:39 -05:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
2023-03-11 08:26:53 -05:00
|
|
|
"jest": "29.5.0",
|
2022-12-04 16:41:39 -05:00
|
|
|
"microbundle": "0.15.1",
|
2023-04-23 06:27:20 -04:00
|
|
|
"prettier": "2.8.8",
|
2023-04-02 13:42:59 -04:00
|
|
|
"ts-jest": "29.1.0",
|
2023-06-01 14:55:16 -04:00
|
|
|
"typescript": "5.1.3"
|
2022-12-04 16:41:39 -05:00
|
|
|
},
|
2023-06-01 17:28:37 -04:00
|
|
|
"packageManager": "yarn@3.6.0"
|
2022-12-04 16:41:39 -05:00
|
|
|
}
|