forked from editor-js/paragraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 811 Bytes
/
package.json
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
{
"name": "@editorjs/paragraph",
"version": "2.11.3",
"keywords": [
"codex editor",
"paragraph",
"editor.js",
"editorjs"
],
"description": "Paragraph Tool for Editor.js",
"license": "MIT",
"repository": "https://github.com/editor-js/paragraph",
"files": ["dist"],
"main": "./dist/paragraph.umd.js",
"module": "./dist/paragraph.mjs",
"exports": {
".": {
"import": "./dist/paragraph.mjs",
"require": "./dist/paragraph.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"author": {
"name": "CodeX",
"email": "[email protected]"
},
"devDependencies": {
"vite": "^4.4.11",
"vite-plugin-css-injected-by-js": "^3.3.0"
},
"dependencies": {
"@codexteam/icons": "^0.0.4"
}
}