forked from TypeCellOS/BlockNote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.64 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@blocknote/core",
"homepage": "https://github.com/TypeCellOS/BlockNote",
"private": false,
"sideEffects": [
"*.css"
],
"license": "MPL-2.0",
"version": "0.22.0",
"files": [
"dist",
"types",
"src"
],
"keywords": [
"react",
"javascript",
"editor",
"typescript",
"prosemirror",
"wysiwyg",
"rich-text-editor",
"notion",
"yjs",
"block-based",
"tiptap"
],
"description": "A \"Notion-style\" block-based extensible text editor built on top of Prosemirror and Tiptap.",
"type": "module",
"source": "src/index.ts",
"types": "./types/src/index.d.ts",
"main": "./dist/blocknote.umd.cjs",
"module": "./dist/blocknote.js",
"exports": {
".": {
"types": "./types/src/index.d.ts",
"import": "./dist/blocknote.js",
"require": "./dist/blocknote.umd.cjs"
},
"./style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
},
"./fonts/inter.css": {
"import": "./src/fonts/inter.css",
"require": "./src/fonts/inter.css"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build-bundled": "tsc && vite build --config vite.config.bundled.ts && git checkout tmp-releases && rm -rf ../../release && mv ../../release-tmp ../../release",
"preview": "vite preview",
"lint": "eslint src --max-warnings 0",
"test": "vitest --run",
"test-watch": "vitest watch",
"clean": "rimraf dist && rimraf types"
},
"dependencies": {
"@emoji-mart/data": "^1.2.1",
"@tiptap/core": "^2.7.1",
"@tiptap/extension-bold": "^2.7.1",
"@tiptap/extension-code": "^2.7.1",
"@tiptap/extension-collaboration": "^2.7.1",
"@tiptap/extension-collaboration-cursor": "^2.7.1",
"@tiptap/extension-gapcursor": "^2.7.1",
"@tiptap/extension-hard-break": "^2.7.1",
"@tiptap/extension-history": "^2.7.1",
"@tiptap/extension-horizontal-rule": "^2.7.1",
"@tiptap/extension-italic": "^2.7.1",
"@tiptap/extension-link": "^2.7.1",
"@tiptap/extension-paragraph": "^2.7.1",
"@tiptap/extension-strike": "^2.7.1",
"@tiptap/extension-table-cell": "^2.7.1",
"@tiptap/extension-table-header": "^2.7.1",
"@tiptap/extension-table-row": "^2.7.1",
"@tiptap/extension-text": "^2.7.1",
"@tiptap/extension-underline": "^2.7.1",
"@tiptap/pm": "^2.7.1",
"emoji-mart": "^5.6.0",
"hast-util-from-dom": "^4.2.0",
"prosemirror-dropcursor": "^1.8.1",
"prosemirror-highlight": "^0.9.0",
"prosemirror-model": "^1.23.0",
"prosemirror-state": "^1.4.3",
"prosemirror-tables": "^1.6.1",
"prosemirror-transform": "^1.10.2",
"prosemirror-view": "^1.33.7",
"rehype-format": "^5.0.0",
"rehype-parse": "^8.0.4",
"rehype-remark": "^9.1.2",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-stringify": "^10.0.2",
"shiki": "^1.22.0",
"unified": "^10.1.2",
"uuid": "^8.3.2",
"y-prosemirror": "1.2.13",
"y-protocols": "^1.0.6",
"yjs": "^13.6.15"
},
"devDependencies": {
"@types/emoji-mart": "^3.0.14",
"@types/hast": "^3.0.0",
"@types/uuid": "^8.3.4",
"eslint": "^8.10.0",
"jsdom": "^25.0.1",
"prettier": "^2.7.1",
"rimraf": "^5.0.5",
"rollup-plugin-webpack-stats": "^0.2.2",
"typescript": "^5.3.3",
"vite": "^5.3.4",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^2.0.3"
},
"eslintConfig": {
"extends": [
"../../.eslintrc.js"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"gitHead": "37614ab348dcc7faa830a9a88437b37197a2162d"
}