@tailor-cms/ce-jodit-html-edit 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@tailor-cms/ce-jodit-html-edit",
3
+ "description": "Tailor CMS Jodit HTML editor authoring component",
4
+ "author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
5
+ "type": "module",
6
+ "version": "0.0.1",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/index.js",
10
+ "require": "./dist/index.cjs"
11
+ }
12
+ },
13
+ "main": "./dist/index.cjs",
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "peerDependencies": {
18
+ "vue": "^3.5.13"
19
+ },
20
+ "devDependencies": {
21
+ "@tailor-cms/eslint-config": "0.0.2",
22
+ "@types/lodash": "^4.17.15",
23
+ "@vitejs/plugin-vue": "^5.2.1",
24
+ "typescript": "^5.7.3",
25
+ "vite": "^6.1.0",
26
+ "vue-tsc": "^2.2.0",
27
+ "@tailor-cms/ce-jodit-html-manifest": "0.0.1"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "dependencies": {
33
+ "jodit": "^4.5.17",
34
+ "lodash": "^4.17.21"
35
+ },
36
+ "scripts": {
37
+ "dev": "vite build --watch",
38
+ "build": "vue-tsc --noEmit && vite build",
39
+ "lint": "eslint --ext .js,.ts,.vue ./src",
40
+ "lint:fix": "pnpm lint --fix"
41
+ }
42
+ }