@jinntec/jinntap 1.31.0 → 1.33.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jinntec/jinntap",
3
- "version": "1.31.0",
3
+ "version": "1.33.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.es.js",
6
6
  "module": "./dist/index.es.js",
@@ -17,6 +17,9 @@
17
17
  "./jinn-toast": {
18
18
  "import": "./dist/jinn-toast.es.js",
19
19
  "types": "./dist/jinn-toast.d.ts"
20
+ },
21
+ "./storage": {
22
+ "import": "./dist/storage.es.js"
20
23
  }
21
24
  },
22
25
  "files": [
@@ -26,10 +29,12 @@
26
29
  "dist/jinn-toast.es.js",
27
30
  "dist/jinn-toast.es.js.map",
28
31
  "dist/jinn-toast.d.ts",
32
+ "dist/storage.es.js",
33
+ "dist/storage.es.js.map",
29
34
  "dist/index.es.js",
30
35
  "dist/index.es.js.map",
31
36
  "dist/index.d.ts",
32
- "dist/editor-styles.css",
37
+ "dist/tei-editor-styles.css",
33
38
  "dist/jinn-tap.css",
34
39
  "dist/jinntap-logo.png",
35
40
  "dist/jinntap-logo-128.png"
@@ -38,8 +43,10 @@
38
43
  "dev": "vite",
39
44
  "build": "vite build",
40
45
  "postbuild": "node scripts/copy-assets.js",
41
- "build:demo": "vite build --config vite.demo.config.js",
42
- "preview": "vite preview",
46
+ "clean": "node scripts/clean.js",
47
+ "build:site": "npm run build && node scripts/copy-site-assets.js && npx @11ty/eleventy",
48
+ "docs:dev": "npm run build && node scripts/copy-site-assets.js && npx @11ty/eleventy --serve --watch",
49
+ "docs:build": "npx @11ty/eleventy",
43
50
  "cypress:open": "cypress open",
44
51
  "cypress:run": "cypress run",
45
52
  "test": "cypress run",
@@ -48,35 +55,38 @@
48
55
  "format": "prettier --write './**/*.js' './*/**/*.json' './**/*.xq'"
49
56
  },
50
57
  "dependencies": {
51
- "@hocuspocus/provider": "^4.0.0",
52
- "@tiptap/core": "^3.22.5",
53
- "@tiptap/extension-bubble-menu": "^3.22.5",
54
- "@tiptap/extension-collaboration": "^3.22.5",
55
- "@tiptap/extension-collaboration-caret": "^3.22.5",
56
- "@tiptap/extension-history": "^3.22.5",
57
- "@tiptap/extension-image": "^3.22.5",
58
- "@tiptap/extension-placeholder": "^3.22.5",
59
- "@tiptap/pm": "^3.22.5",
60
- "@tiptap/starter-kit": "^3.22.5",
58
+ "@hocuspocus/provider": "^4.4.0",
59
+ "@tiptap/core": "^3.28.0",
60
+ "@tiptap/extension-bubble-menu": "^3.28.0",
61
+ "@tiptap/extension-collaboration": "^3.28.0",
62
+ "@tiptap/extension-collaboration-caret": "^3.28.0",
63
+ "@tiptap/extension-document": "^3.28.0",
64
+ "@tiptap/extension-image": "^3.28.0",
65
+ "@tiptap/extension-text": "^3.28.0",
66
+ "@tiptap/extensions": "^3.28.0",
67
+ "@tiptap/pm": "^3.28.0",
68
+ "@tiptap/starter-kit": "^3.28.0",
61
69
  "fontoxpath": "^3.33.2",
62
70
  "prettier-plugin-xquery": "^1.2.5",
63
- "rollup": "^4.60.2",
71
+ "rollup": "^4.62.2",
64
72
  "unique-username-generator": "^1.4.0",
65
73
  "xml-formatter": "^3.6.5",
66
74
  "y-prosemirror": "^1.3.4"
67
75
  },
68
76
  "devDependencies": {
69
- "@hocuspocus/extension-logger": "^4.0.0",
70
- "@hocuspocus/server": "^4.0.0",
77
+ "@11ty/eleventy": "^3.1.6",
78
+ "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
79
+ "@hocuspocus/extension-logger": "^4.4.0",
80
+ "@hocuspocus/server": "^4.4.0",
71
81
  "@semantic-release/changelog": "^6.0.3",
72
82
  "@semantic-release/git": "^10.0.1",
73
- "@semantic-release/github": "^9.2.6",
74
- "@semantic-release/npm": "^10.0.4",
83
+ "@semantic-release/github": "^12.0.9",
84
+ "@semantic-release/npm": "^13.1.5",
75
85
  "chai-xml": "^0.4.1",
76
86
  "cypress": "^15.9.0",
77
87
  "jsonwebtoken": "^9.0.2",
78
88
  "prettier": "^3.6.2",
79
- "semantic-release": "^22.0.8",
89
+ "semantic-release": "^25.0.8",
80
90
  "vite": "^5.1.0"
81
91
  },
82
92
  "keywords": [
@@ -106,6 +116,10 @@
106
116
  ]
107
117
  },
108
118
  "peerDependencies": {
109
- "@teipublisher/pb-components": "^3.0.5"
119
+ "@teipublisher/pb-components": "^3.6.6"
120
+ },
121
+ "publishConfig": {
122
+ "access": "public",
123
+ "registry": "https://registry.npmjs.org/"
110
124
  }
111
125
  }