-
-
Notifications
You must be signed in to change notification settings - Fork 764
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.52 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
{
"name": "@blocknote/core",
"homepage": "https://github.com/TypeCellOS/BlockNote",
"private": false,
"sideEffects": [
"*.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TypeCellOS/BlockNote.git",
"directory": "packages/core"
},
"license": "MPL-2.0",
"version": "0.51.4",
"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.cjs",
"module": "./dist/blocknote.js",
"exports": {
".": {
"types": "./types/src/index.d.ts",
"import": "./dist/blocknote.js",
"require": "./dist/blocknote.cjs"
},
"./style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css",
"style": "./dist/style.css"
},
"./fonts/inter.css": {
"import": "./src/fonts/inter.css",
"require": "./src/fonts/inter.css",
"style": "./src/fonts/inter.css"
},
"./comments": {
"types": "./types/src/comments/index.d.ts",
"import": "./dist/comments.js",
"require": "./dist/comments.cjs"
},
"./blocks": {
"types": "./types/src/blocks/index.d.ts",
"import": "./dist/blocks.js",
"require": "./dist/blocks.cjs"
},
"./locales": {
"types": "./types/src/i18n/index.d.ts",
"import": "./dist/locales.js",
"require": "./dist/locales.cjs"
},
"./extensions": {
"types": "./types/src/extensions/index.d.ts",
"import": "./dist/extensions.js",
"require": "./dist/extensions.cjs"
},
"./yjs": {
"types": "./types/src/yjs/index.d.ts",
"import": "./dist/yjs.js",
"require": "./dist/yjs.cjs"
}
},
"scripts": {
"dev": "vp dev",
"build-bundled": "tsc && vp build --config vite.config.bundled.ts && git checkout tmp-releases && rm -rf ../../release && mv ../../release-tmp ../../release",
"preview": "vp preview",
"lint": "vp lint src",
"test": "vp test --run",
"test-watch": "vp test watch",
"clean": "rimraf dist && rimraf types",
"update-tlds": "node scripts/update-tlds.mjs"
},
"dependencies": {
"@emoji-mart/data": "^1.2.1",
"@handlewithcare/prosemirror-inputrules": "^0.1.4",
"@shikijs/types": "^4",
"@tanstack/store": "^0.7.7",
"@tiptap/core": "^3.13.0",
"@tiptap/extension-bold": "^3.13.0",
"@tiptap/extension-code": "^3.13.0",
"@tiptap/extension-italic": "^3.13.0",
"@tiptap/extension-strike": "^3.13.0",
"@tiptap/extension-text": "^3.13.0",
"@tiptap/extension-underline": "^3.13.0",
"@tiptap/extensions": "^3.13.0",
"@tiptap/pm": "^3.13.0",
"emoji-mart": "^5.6.0",
"fast-deep-equal": "^3.1.3",
"lib0": "^0.2.99",
"prosemirror-highlight": "^0.15.1",
"prosemirror-model": "^1.25.4",
"prosemirror-state": "^1.4.4",
"prosemirror-tables": "^1.8.3",
"prosemirror-transform": "^1.11.0",
"prosemirror-view": "^1.41.4",
"y-prosemirror": "^1.3.7",
"y-protocols": "^1.0.6",
"yjs": "^13.6.27"
},
"devDependencies": {
"jsdom": "^29.0.2",
"rimraf": "^5.0.10",
"rollup-plugin-webpack-stats": "^0.2.6",
"typescript": "^5.9.3",
"vite-plus": "catalog:"
},
"gitHead": "37614ab348dcc7faa830a9a88437b37197a2162d"
}