-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.3 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.3 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
{
"name": "obsidian-editorjs-plugin",
"version": "1.0.0",
"description": "A block-based rich text editor powered by Editor.js for Obsidian",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production"
},
"keywords": [
"obsidian",
"plugin",
"editorjs",
"rich-text",
"block-editor"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^18.15.11",
"obsidian": "latest",
"rollup": "^4.9.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2",
"typescript": "5.0.3"
},
"dependencies": {
"@calumk/editorjs-codeflask": "^1.0.10",
"@editorjs/attaches": "^1.3.0",
"@editorjs/checklist": "^1.6.0",
"@editorjs/code": "^2.9.2",
"@editorjs/delimiter": "^1.4.2",
"@editorjs/editorjs": "^2.31.0",
"@editorjs/embed": "^2.7.4",
"@editorjs/footnotes": "^1.1.0",
"@editorjs/header": "^2.8.8",
"@editorjs/image": "^2.9.3",
"@editorjs/inline-code": "^1.5.1",
"@editorjs/link": "^2.6.2",
"@editorjs/list": "^1.10.0",
"@editorjs/marker": "^1.4.0",
"@editorjs/nested-list": "^1.4.3",
"@editorjs/paragraph": "^2.11.7",
"@editorjs/personality": "^2.0.2",
"@editorjs/quote": "^2.7.2",
"@editorjs/raw": "^2.5.0",
"@editorjs/simple-image": "^1.6.0",
"@editorjs/table": "^2.4.1",
"@editorjs/text-variant-tune": "^1.0.3",
"@editorjs/underline": "^1.1.0",
"@editorjs/warning": "^1.4.0",
"editorjs-alert": "^1.1.4",
"editorjs-button": "^3.0.3",
"editorjs-change-case": "^0.0.3",
"editorjs-drag-drop": "^1.1.16",
"editorjs-hyperlink": "^1.0.6",
"editorjs-inline-spoiler-tool": "^1.0.1",
"editorjs-layout": "^1.2.5",
"editorjs-math": "^1.0.2",
"editorjs-paragraph-with-alignment": "^3.0.0",
"editorjs-parser": "^1.5.3",
"editorjs-strikethrough": "^1.0.0",
"editorjs-style": "^3.0.3",
"editorjs-text-alignment-blocktune": "^1.0.3",
"editorjs-text-color-plugin": "^2.0.4",
"editorjs-toggle-block": "^0.3.16",
"editorjs-tooltip": "^1.2.2",
"editorjs-undo": "^2.0.28"
}
}