-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 2.89 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 2.89 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "svelty-editor",
"version": "0.0.5",
"description": "A Svelte 5 wrapper component for Editor.js — built with runes, TypeScript, and lazy-loaded tools.",
"license": "MIT",
"author": "Giovani Rodriguez",
"repository": {
"type": "git",
"url": "https://github.com/code-gio/svelty-editor.git"
},
"keywords": [
"svelte",
"svelte5",
"editorjs",
"editor",
"block-editor",
"rich-text",
"wysiwyg",
"typescript",
"editor.js",
"sveltekit"
],
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"sideEffects": [
"**/*.css"
],
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"peerDependencies": {
"@editorjs/delimiter": "^1.4.0",
"@editorjs/editorjs": "^2.28.0",
"@editorjs/embed": "^2.7.6",
"@editorjs/header": "^2.8.0",
"@editorjs/image": "^2.10.0",
"@editorjs/list": "^2.0.0",
"@editorjs/marker": "^1.4.0",
"@editorjs/paragraph": "^2.11.0",
"@editorjs/quote": "^2.7.0",
"@editorjs/table": "^2.4.0",
"@editorjs/warning": "^1.4.0",
"svelte": "^5.0.0"
},
"peerDependenciesMeta": {
"@editorjs/editorjs": {
"optional": false
},
"@editorjs/header": {
"optional": true
},
"@editorjs/list": {
"optional": true
},
"@editorjs/paragraph": {
"optional": true
},
"@editorjs/image": {
"optional": true
},
"@editorjs/embed": {
"optional": true
},
"@editorjs/delimiter": {
"optional": true
},
"@editorjs/marker": {
"optional": true
},
"@editorjs/quote": {
"optional": true
},
"@editorjs/table": {
"optional": true
},
"@editorjs/warning": {
"optional": true
}
},
"devDependencies": {
"@editorjs/delimiter": "^1.4.2",
"@editorjs/editorjs": "^2.31.5",
"@editorjs/embed": "^2.8.0",
"@editorjs/header": "^2.8.8",
"@editorjs/image": "^2.10.3",
"@editorjs/list": "^2.0.9",
"@editorjs/marker": "^1.4.0",
"@editorjs/paragraph": "^2.11.7",
"@editorjs/quote": "^2.7.6",
"@editorjs/table": "^2.4.5",
"@editorjs/warning": "^1.4.1",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.50.2",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"publint": "^0.3.17",
"svelte": "^5.51.0",
"svelte-check": "^4.4.2",
"typescript": "^5.9.3",
"vite": "^7.3.1"
}
}