forked from BitPhinix/slate-yjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.51 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "slate-yjs",
"sideEffects": false,
"version": "3.1.1",
"description": "Yjs bindings for Slate.",
"keywords": [
"slate",
"slatejs",
"yjs",
"y-websocket"
],
"main": "dist/main/index.js",
"typings": "dist/main/index.d.ts",
"module": "dist/module/index.js",
"exports": {
".": {
"import": "./dist/module/index.js",
"require": "./dist/main/index.js"
}
},
"files": [
"dist"
],
"author": "Eric Meier <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/BitPhinix/slate-yjs.git"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint ./test/**/*.ts ./src/**/*.ts --quiet",
"fix": "eslint ./test/**/*.ts ./src/**/*.ts --quiet --fix",
"build": "rimraf dist && npm run build:main & npm run build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"test": "jest --forceExit --coverage",
"test:watch": "jest --forceExit --coverage --watch",
"semantic-release": "semantic-release",
"commit": "cz"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-typescript-prettier": "^4.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"prettier": "^2.3.2",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"slate": "~0.59.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.0",
"typescript": "^4.3.5",
"yjs": "^13.5.11"
},
"dependencies": {
"tiny-invariant": "1.1.0",
"y-protocols": "^1.0.5"
},
"peerDependencies": {
"react": ">=16.8.0",
"slate": "^0.59.0",
"yjs": "^13.5.4"
},
"bugs": {
"url": "https://github.com/BitPhinix/slate-yjs/issues"
},
"homepage": "https://github.com/BitPhinix/slate-yjs#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}