writetrack 0.7.0 → 0.9.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": "writetrack",
3
- "version": "0.7.0",
3
+ "version": "0.9.0",
4
4
  "private": false,
5
5
  "description": "Lightweight keystroke telemetry capture for web applications",
6
6
  "main": "dist/index.cjs",
@@ -39,6 +39,18 @@
39
39
  "types": "./dist/quill/index.d.ts",
40
40
  "import": "./dist/quill/index.js"
41
41
  },
42
+ "./lexical": {
43
+ "types": "./dist/lexical/index.d.ts",
44
+ "import": "./dist/lexical/index.js"
45
+ },
46
+ "./slate": {
47
+ "types": "./dist/slate/index.d.ts",
48
+ "import": "./dist/slate/index.js"
49
+ },
50
+ "./tinymce": {
51
+ "types": "./dist/tinymce/index.d.ts",
52
+ "import": "./dist/tinymce/index.js"
53
+ },
42
54
  "./browser": {
43
55
  "types": "./dist/esm/index.d.ts",
44
56
  "import": "./dist/browser/index.js"
@@ -65,10 +77,13 @@
65
77
  "@observablehq/plot": "^0.6.0",
66
78
  "@tiptap/core": ">=2.0.0",
67
79
  "ckeditor5": ">=42.0.0",
80
+ "lexical": ">=0.12.0",
68
81
  "prosemirror-state": ">=1.0.0",
69
82
  "prosemirror-view": ">=1.0.0",
70
83
  "quill": ">=2.0.0",
71
84
  "react": ">=17.0.0",
85
+ "slate": ">=0.94.0",
86
+ "tinymce": ">=6.0.0",
72
87
  "vue": ">=3.0.0"
73
88
  },
74
89
  "peerDependenciesMeta": {
@@ -95,6 +110,15 @@
95
110
  },
96
111
  "quill": {
97
112
  "optional": true
113
+ },
114
+ "lexical": {
115
+ "optional": true
116
+ },
117
+ "slate": {
118
+ "optional": true
119
+ },
120
+ "tinymce": {
121
+ "optional": true
98
122
  }
99
123
  },
100
124
  "files": [
@@ -119,6 +143,9 @@
119
143
  "dist/ckeditor/",
120
144
  "dist/prosemirror/",
121
145
  "dist/quill/",
146
+ "dist/lexical/",
147
+ "dist/slate/",
148
+ "dist/tinymce/",
122
149
  "dist/writetrack.wasm",
123
150
  "dist/esm/writetrack.wasm",
124
151
  "dist/browser/writetrack.wasm",
@@ -144,8 +171,5 @@
144
171
  "security"
145
172
  ],
146
173
  "author": "",
147
- "license": "SEE LICENSE IN LICENSE",
148
- "publishConfig": {
149
- "directory": "package"
150
- }
174
+ "license": "SEE LICENSE IN LICENSE"
151
175
  }