forked from swe-productivity/BlockNote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.84 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.84 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
{
"name": "@blocknote/code-block",
"homepage": "https://github.com/TypeCellOS/BlockNote",
"private": false,
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/TypeCellOS/BlockNote.git",
"directory": "packages/code-block"
},
"license": "MPL-2.0",
"version": "0.46.1",
"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-code-block.cjs",
"module": "./dist/blocknote-code-block.js",
"exports": {
".": {
"types": "./types/src/index.d.ts",
"import": "./dist/blocknote-code-block.js",
"require": "./dist/blocknote-code-block.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --max-warnings 0",
"test": "vitest --run",
"test-watch": "vitest watch"
},
"dependencies": {
"@blocknote/core": "0.46.1",
"@shikijs/core": "^3",
"@shikijs/engine-javascript": "^3",
"@shikijs/langs": "^3",
"@shikijs/langs-precompiled": "^3",
"@shikijs/themes": "^3",
"@shikijs/types": "^3"
},
"devDependencies": {
"eslint": "^8.57.1",
"rollup-plugin-webpack-stats": "^0.2.6",
"typescript": "^5.9.3",
"vite": "^5.4.20",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^2.1.9"
},
"peerDependencies": {
"@blocknote/core": "workspace:^"
},
"eslintConfig": {
"extends": [
"../../.eslintrc.json"
]
},
"gitHead": "37614ab348dcc7faa830a9a88437b37197a2162d"
}