-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 935 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 935 Bytes
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
{
"name": "openblock",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "A fully open-source, framework-agnostic rich text editor built on ProseMirror",
"license": "Apache-2.0",
"author": "Labbs",
"repository": {
"type": "git",
"url": "https://github.com/Labbs/openblock.git"
},
"keywords": [
"editor",
"rich-text",
"prosemirror",
"block-editor",
"wysiwyg",
"notion-like",
"react",
"typescript",
"text-editor",
"markdown"
],
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"lint": "eslint packages/*/src",
"test": "pnpm -r test",
"clean": "pnpm -r clean"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^17.1.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.53.1"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}