-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
92 lines (92 loc) · 2.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "aieditor",
"author": "yangfuhai",
"version": "1.2.5",
"type": "module",
"keywords": [
"editor",
"ai",
"ai editor"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^20.9.0",
"less": "^4.2.0",
"typescript": "^5.0.2",
"vite": "^5.4.6",
"vite-plugin-dts": "^3.6.3"
},
"dependencies": {
"@tiptap/core": "^2.9.1",
"@tiptap/extension-bubble-menu": "^2.9.1",
"@tiptap/extension-character-count": "^2.9.1",
"@tiptap/extension-code-block-lowlight": "^2.9.1",
"@tiptap/extension-color": "^2.9.1",
"@tiptap/extension-font-family": "^2.9.1",
"@tiptap/extension-gapcursor": "^2.9.1",
"@tiptap/extension-heading": "^2.9.1",
"@tiptap/extension-highlight": "^2.9.1",
"@tiptap/extension-image": "^2.9.1",
"@tiptap/extension-link": "^2.9.1",
"@tiptap/extension-mention": "^2.9.1",
"@tiptap/extension-placeholder": "^2.9.1",
"@tiptap/extension-subscript": "^2.9.1",
"@tiptap/extension-superscript": "^2.9.1",
"@tiptap/extension-table": "^2.9.1",
"@tiptap/extension-table-cell": "^2.9.1",
"@tiptap/extension-table-header": "^2.9.1",
"@tiptap/extension-table-row": "^2.9.1",
"@tiptap/extension-task-item": "^2.9.1",
"@tiptap/extension-task-list": "^2.9.1",
"@tiptap/extension-text-align": "^2.9.1",
"@tiptap/extension-text-style": "^2.9.1",
"@tiptap/extension-underline": "^2.9.1",
"@tiptap/pm": "^2.9.1",
"@tiptap/starter-kit": "^2.9.1",
"@tiptap/suggestion": "^2.9.1",
"crypto-js": "^4.2.0",
"fetch-event-stream": "^0.1.5",
"i18next": "^23.16.2",
"lowlight": "^3.1.0",
"markdown-it": "^14.1.0",
"markdown-it-container": "^4.0.0",
"tippy.js": "^6.3.7",
"turndown": "^7.2.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/aieditor-team/aieditor"
},
"bugs": {
"url": "https://github.com/aieditor-team/aieditor/issues"
},
"homepage": "https://github.com/aieditor-team/aieditor#readme",
"license": "LGPL"
}