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/**"
|
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/hedgedoc/hedgedoc.git"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-02-09 07:39:33 -05:00
|
|
|
"eventemitter2": "6.4.9",
|
|
|
|
"isomorphic-ws": "5.0.0",
|
2023-03-11 07:52:15 -05:00
|
|
|
"lib0": "0.2.66",
|
2023-03-11 14:57:47 -05:00
|
|
|
"ws": "8.13.0",
|
2023-02-09 07:39:33 -05:00
|
|
|
"y-protocols": "1.0.5",
|
2023-03-11 08:06:22 -05:00
|
|
|
"yjs": "13.5.50"
|
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-03-13 19:37:04 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.55.0",
|
|
|
|
"@typescript-eslint/parser": "5.55.0",
|
2023-03-11 08:21:47 -05:00
|
|
|
"eslint": "8.36.0",
|
|
|
|
"eslint-config-prettier": "8.7.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-02-11 01:48:38 -05:00
|
|
|
"prettier": "2.8.4",
|
2023-01-17 12:50:03 -05:00
|
|
|
"ts-jest": "29.0.5",
|
2023-02-04 00:16:01 -05:00
|
|
|
"typescript": "4.9.5"
|
2022-12-04 16:41:39 -05:00
|
|
|
},
|
2023-02-06 03:25:41 -05:00
|
|
|
"packageManager": "yarn@3.4.1"
|
2022-12-04 16:41:39 -05:00
|
|
|
}
|