This repository has been archived by the owner on Dec 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@hedgedoc/realtime",
"version": "0.3.0",
"description": "Contains common code for realtime communication",
"author": "The HedgeDoc Authors",
"license": "AGPL-3.0",
"scripts": {
"build": "tsc-esm && tsc -p tsconfig-cjs.json && find dist/cjs -type d -execdir sh -c 'cd {}; mmv -rd \"*.js*\" \"#1#2\"' \\;",
"test": "jest",
"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/cjs/index",
"module": "dist/mjs/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index"
}
},
"typesVersions": {
"*": {
"index.d.ts": [
"dist/mjs/index.d.ts"
]
}
},
"files": [
"LICENSES/*",
"package.json",
"README.md",
"dist/**"
],
"repository": {
"type": "git",
"url": "https://github.com/hedgedoc/realtime-communication.git"
},
"dependencies": {
"isomorphic-ws": "^5.0.0",
"lib0": "^0.2.51",
"typed-emitter": "^2.0.0",
"ws": "^8.0.0",
"y-protocols": "^1.0.0",
"yjs": "^13.0.0"
},
"devDependencies": {
"@digitak/tsc-esm": "3.1.4",
"@jest/types": "29.3.1",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "27.1.6",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.3.1",
"prettier": "2.8.0",
"ts-jest": "29.0.3",
"typescript": "4.9.3"
},
"packageManager": "[email protected]"
}