patent-editor 0.1.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 ADDED
@@ -0,0 +1,126 @@
1
+ {
2
+ "name": "patent-editor",
3
+ "private": false,
4
+ "version": "0.1.0",
5
+ "description": "A patent document editor built on TipTap/ProseMirror with AI-assisted drafting capabilities",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "main": "dist/lib.js",
9
+ "module": "dist/lib.js",
10
+ "types": "dist/lib.d.ts",
11
+ "keywords": [
12
+ "patent",
13
+ "editor",
14
+ "tiptap",
15
+ "prosemirror",
16
+ "react"
17
+ ],
18
+ "exports": {
19
+ ".": {
20
+ "import": "./dist/lib.js",
21
+ "types": "./dist/lib.d.ts"
22
+ },
23
+ "./style.css": "./dist/lib.css"
24
+ },
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "scripts": {
29
+ "dev": "vite",
30
+ "build": "vite build",
31
+ "lint": "eslint .",
32
+ "preview": "vite preview",
33
+ "check": "tsc -b --noEmit",
34
+ "test": "vitest run"
35
+ },
36
+ "dependencies": {
37
+ "@tiptap/extension-blockquote": "^3.20.1",
38
+ "@tiptap/extension-bold": "^3.20.1",
39
+ "@tiptap/extension-bubble-menu": "^3.20.1",
40
+ "@tiptap/extension-bullet-list": "^3.20.1",
41
+ "@tiptap/extension-code": "^3.20.1",
42
+ "@tiptap/extension-code-block": "^3.20.1",
43
+ "@tiptap/extension-color": "^3.20.1",
44
+ "@tiptap/extension-document": "^3.20.1",
45
+ "@tiptap/extension-heading": "^3.20.1",
46
+ "@tiptap/extension-highlight": "^3.20.1",
47
+ "@tiptap/extension-history": "^3.20.1",
48
+ "@tiptap/extension-horizontal-rule": "^3.20.1",
49
+ "@tiptap/extension-image": "^3.20.1",
50
+ "@tiptap/extension-italic": "^3.20.1",
51
+ "@tiptap/extension-link": "^3.20.1",
52
+ "@tiptap/extension-list-item": "^3.20.1",
53
+ "@tiptap/extension-ordered-list": "^3.20.1",
54
+ "@tiptap/extension-paragraph": "^3.20.1",
55
+ "@tiptap/extension-placeholder": "^3.20.1",
56
+ "@tiptap/extension-strike": "^3.20.1",
57
+ "@tiptap/extension-subscript": "^3.20.1",
58
+ "@tiptap/extension-superscript": "^3.20.1",
59
+ "@tiptap/extension-table": "^3.20.1",
60
+ "@tiptap/extension-table-cell": "^3.20.1",
61
+ "@tiptap/extension-table-header": "^3.20.1",
62
+ "@tiptap/extension-table-row": "^3.20.1",
63
+ "@tiptap/extension-task-item": "^3.20.1",
64
+ "@tiptap/extension-task-list": "^3.20.1",
65
+ "@tiptap/extension-text": "^3.20.1",
66
+ "@tiptap/extension-text-align": "^3.20.1",
67
+ "@tiptap/extension-text-style": "^3.20.1",
68
+ "@tiptap/extension-underline": "^3.20.1",
69
+ "@tiptap/pm": "^3.20.1",
70
+ "@tiptap/react": "^3.20.1",
71
+ "@tiptap/starter-kit": "^3.20.1",
72
+ "@tiptap/suggestion": "^3.20.1",
73
+ "clsx": "^2.1.1",
74
+ "diff-match-patch": "^1.0.5",
75
+ "docx": "^9.6.1",
76
+ "file-saver": "^2.0.5",
77
+ "katex": "^0.16.38",
78
+ "lucide-react": "^0.511.0",
79
+ "mathlive": "^0.108.3",
80
+ "mermaid": "^11.12.3",
81
+ "prosemirror-dropcursor": "^1.8.2",
82
+ "prosemirror-gapcursor": "^1.4.0",
83
+ "prosemirror-model": "^1.25.4",
84
+ "prosemirror-state": "^1.4.4",
85
+ "prosemirror-transform": "^1.11.0",
86
+ "prosemirror-view": "^1.41.6",
87
+ "tailwind-merge": "^3.0.2",
88
+ "tippy.js": "^6.3.7",
89
+ "zustand": "^5.0.3"
90
+ },
91
+ "peerDependencies": {
92
+ "react": "^18.0.0",
93
+ "react-dom": "^18.0.0",
94
+ "antd": "^6.0.0",
95
+ "@ant-design/x": "^2.0.0"
96
+ },
97
+ "devDependencies": {
98
+ "@ant-design/x": "^2.3.0",
99
+ "@eslint/js": "^9.25.0",
100
+ "@types/diff-match-patch": "^1.0.36",
101
+ "@types/file-saver": "^2.0.7",
102
+ "@types/node": "^22.15.30",
103
+ "@types/react": "^18.3.12",
104
+ "@types/react-dom": "^18.3.1",
105
+ "@vitejs/plugin-react": "^4.4.1",
106
+ "antd": "^6.3.2",
107
+ "autoprefixer": "^10.4.21",
108
+ "babel-plugin-react-dev-locator": "^1.0.0",
109
+ "eslint": "^9.25.0",
110
+ "eslint-plugin-react-hooks": "^5.2.0",
111
+ "eslint-plugin-react-refresh": "^0.4.19",
112
+ "globals": "^16.0.0",
113
+ "postcss": "^8.5.3",
114
+ "react": "^18.3.1",
115
+ "react-dom": "^18.3.1",
116
+ "react-router-dom": "^7.3.0",
117
+ "tailwindcss": "^3.4.17",
118
+ "typescript": "~5.8.3",
119
+ "typescript-eslint": "^8.30.1",
120
+ "vite": "^6.3.5",
121
+ "vite-plugin-dts": "^4.5.4",
122
+ "vite-plugin-trae-solo-badge": "^1.0.0",
123
+ "vite-tsconfig-paths": "^5.1.4",
124
+ "vitest": "^3.2.4"
125
+ }
126
+ }