@vervedoc/docx-editor-view 1.0.4

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,59 @@
1
+ {
2
+ "name": "@vervedoc/docx-editor-view",
3
+ "version": "1.0.4",
4
+ "description": "DocxEditor 视图层 - 渲染与绘制",
5
+ "author": "wanghe",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "main": "./dist/docx-editor-view.umd.cjs",
9
+ "module": "./dist/docx-editor-view.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/docx-editor-view.js",
15
+ "require": "./dist/docx-editor-view.umd.cjs"
16
+ }
17
+ },
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "keywords": [
22
+ "docx-editor-view",
23
+ "editor",
24
+ "docx-editor"
25
+ ],
26
+ "files": [
27
+ "dist",
28
+ "README.md",
29
+ "package.json"
30
+ ],
31
+ "scripts": {
32
+ "dev": "vite",
33
+ "clean": "node -e \"const fs = require('fs'); if(fs.existsSync('dist')) fs.rmSync('dist', {recursive: true})\"",
34
+ "build": "npm run clean && tsc && vite build",
35
+ "preview": "vite preview",
36
+ "type:check": "tsc --noEmit"
37
+ },
38
+ "dependencies": {
39
+ "@vervedoc/docx-editor-schema": "1.0.7",
40
+ "@vervedoc/docx-editor-state": "1.0.2",
41
+ "@vervedoc/docx-editor-transform": "1.0.7",
42
+ "eventemitter3": "^5.0.4",
43
+ "just-debounce-it": "^3.2.0",
44
+ "just-throttle": "^4.2.0"
45
+ },
46
+ "devDependencies": {
47
+ "@eslint/js": "^10.0.1",
48
+ "eslint": "^10.4.0",
49
+ "eslint-plugin-unused-imports": "^4.4.1",
50
+ "typescript": "^5.0.0",
51
+ "typescript-eslint": "^8.59.4",
52
+ "vite": "^5.4.10",
53
+ "vite-plugin-css-injected-by-js": "^3.0.0",
54
+ "vite-plugin-dts": "^4.5.4"
55
+ },
56
+ "engines": {
57
+ "node": ">=16.0.0"
58
+ }
59
+ }