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
86 lines (86 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.1 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
{
"name": "@blocknote/react",
"homepage": "https://github.com/yousefed/blocknote",
"private": false,
"license": "MPL-2.0",
"version": "0.4.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-react.umd.cjs",
"module": "./dist/blocknote-react.js",
"exports": {
".": {
"import": "./dist/blocknote-react.js",
"require": "./dist/blocknote-react.umd.cjs"
},
"./style.css": {
"import": "./dist/style.css",
"require": "./dist/style.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"
},
"dependencies": {
"@blocknote/core": "^0.4.0",
"@emotion/react": "^11.10.5",
"@mantine/core": "^5.6.1",
"@mantine/hooks": "^5.6.1",
"@tippyjs/react": "^4.2.6",
"@tiptap/react": "2.0.0-beta.217",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^1.0.7",
"eslint": "^8.10.0",
"eslint-config-react-app": "^7.0.0",
"prettier": "^2.7.1",
"typescript": "^4.5.4",
"vite": "^4.1.2",
"vite-plugin-eslint": "^1.8.1"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"curly": 1
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"gitHead": "d5e8c96e2ad5f6832da60bc3c9acd3f6c16c25c5"
}