-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.58 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.58 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
{
"name": "@teriusu/rich-editor",
"version": "0.6.0",
"description": "TipTap 기반 Notion-style 리치 텍스트 에디터 (Svelte)",
"type": "module",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
},
"./styles": {
"style": "./dist/styles/editor.css",
"default": "./dist/styles/editor.css"
}
},
"files": [
"dist"
],
"scripts": {
"build": "svelte-package -i src && npx tailwindcss -i src/styles/editor.css -o dist/styles/editor.css --minify",
"dev": "svelte-package -i src --watch",
"dev:preview": "vite --config vite.config.dev.ts",
"test": "vitest run"
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"dependencies": {
"@tiptap/core": "^3.20.4",
"@tiptap/extension-bubble-menu": "^3.20.4",
"@tiptap/extension-character-count": "^3.21.0",
"@tiptap/extension-code-block-lowlight": "^3.20.5",
"@tiptap/extension-color": "^3.20.4",
"@tiptap/extension-details": "^3.21.0",
"@tiptap/extension-details-content": "^3.0.0-beta.11",
"@tiptap/extension-details-summary": "^3.0.0-beta.11",
"@tiptap/extension-file-handler": "^3.21.0",
"@tiptap/extension-focus": "^3.21.0",
"@tiptap/extension-highlight": "^3.20.4",
"@tiptap/extension-image": "^3.20.4",
"@tiptap/extension-link": "^3.20.4",
"@tiptap/extension-placeholder": "^3.20.4",
"@tiptap/extension-subscript": "^3.21.0",
"@tiptap/extension-superscript": "^3.21.0",
"@tiptap/extension-table": "^3.20.5",
"@tiptap/extension-table-cell": "^3.20.5",
"@tiptap/extension-table-header": "^3.20.5",
"@tiptap/extension-table-row": "^3.20.5",
"@tiptap/extension-task-item": "^3.21.0",
"@tiptap/extension-task-list": "^3.21.0",
"@tiptap/extension-text-align": "^3.20.4",
"@tiptap/extension-text-style": "^3.20.4",
"@tiptap/extension-typography": "^3.21.0",
"@tiptap/extension-underline": "^3.20.4",
"@tiptap/extension-youtube": "^3.21.0",
"@tiptap/pm": "^3.20.4",
"@tiptap/starter-kit": "^3.22.0",
"clsx": "^2.1.1",
"highlight.js": "^11.11.1",
"lowlight": "^3.3.0",
"lucide-svelte": "^0.477.0",
"tailwind-merge": "^3.0.0"
},
"devDependencies": {
"@sveltejs/package": "^2.3.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"autoprefixer": "^10.4.27",
"happy-dom": "^20.9.0",
"postcss": "^8.5.9",
"svelte": "^5.0.0",
"tailwindcss": "^3.4.19",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^4.1.2"
}
}