-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.06 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
{
"name": "yjs-editorjs-binding",
"version": "0.0.14",
"description": "Editor.js binding for yjs",
"repository": "https://github.com/mrspence/yjs-editorjs-binding.git",
"keywords": [
"Yjs",
"Editor JS",
"EditorJS",
"Binding"
],
"files": [
"lib/",
"README.md",
"LICENSE"
],
"type": "module",
"main": "lib/index.js",
"author": "Matt Spence",
"license": "MIT",
"scripts": {
"dev": "parcel example/index.html --port 8080",
"build": "pnpm run test && ncc build src/index.ts --minify --out lib/ --license LICENSE && pnpm run typings",
"typings": "tsc --outDir lib --module esnext --declaration true --emitDeclarationOnly true src/index.ts --moduleResolution node",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test": "jest --silent",
"ws": "node ./node_modules/y-websocket/bin/server.js",
"prettier": "prettier --write ."
},
"dependencies": {
"@editorjs/editorjs": "^2.26.5",
"yjs": "^13.0.4"
},
"devDependencies": {
"@editorjs/header": "^2.4.0",
"@editorjs/list": "^1.4.0",
"@editorjs/table": "^1.2.2",
"@types/diff": "^4.0.2",
"@types/http-proxy": "^1.17.0",
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.149",
"@types/node": "^12.0.2",
"@vercel/ncc": "^0.36.1",
"buffer": "^5.5.0",
"diff": "^4.0.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^21.1.1",
"lib0": "^0.2.25",
"lodash": "^4.17.19",
"parcel": "^2.8.3",
"prettier": "2.8.7",
"process": "^0.11.10",
"quill-delta": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^9.0.0",
"typescript": "^5.0.0",
"uuid": "^8.0.0",
"ws": "^8.13.0",
"y-websocket": "^1.2.4"
},
"alias": {
"process": "process/browser.js",
"buffer": "buffer"
},
"browser": {
"crypto": false
}
}