-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.68 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.68 KB
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
{
"name": "@creatorsn/powereditor3",
"private": false,
"version": "0.1.18",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/powereditor3.js",
"require": "./dist/powereditor3.umd.cjs",
"types": "./dist/types/index.d.ts"
},
"./powereditor3.css": "./dist/powereditor3.css"
},
"type": "module",
"main": "dist/powereditor3.umd.cjs",
"module": "dist/powereditor3.js",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"preview": "vite preview"
},
"dependencies": {
"@creatorsn/vfluent3": "^0.3.13",
"@tiptap/core": "2.3.0",
"@tiptap/extension-bubble-menu": "2.3.0",
"@tiptap/extension-code-block": "2.3.0",
"@tiptap/extension-code-block-lowlight": "2.3.0",
"@tiptap/extension-color": "2.3.0",
"@tiptap/extension-highlight": "2.3.0",
"@tiptap/extension-link": "2.3.0",
"@tiptap/extension-placeholder": "2.3.0",
"@tiptap/extension-subscript": "2.3.0",
"@tiptap/extension-superscript": "2.3.0",
"@tiptap/extension-table": "2.3.0",
"@tiptap/extension-table-cell": "2.3.0",
"@tiptap/extension-table-header": "2.3.0",
"@tiptap/extension-table-row": "2.3.0",
"@tiptap/extension-task-item": "2.3.0",
"@tiptap/extension-task-list": "2.3.0",
"@tiptap/extension-text-align": "2.3.0",
"@tiptap/extension-text-style": "2.3.0",
"@tiptap/extension-underline": "2.3.0",
"@tiptap/pm": "2.3.0",
"@tiptap/starter-kit": "2.3.0",
"@tiptap/vue-3": "2.3.0",
"autoprefixer": "^10.4.21",
"core-js": "3.30.1",
"d3": "7.0.4",
"highlight.js": "11.6.0",
"katex": "0.13.18",
"lowlight": "2.7.0",
"markdown-it": "^13.0.1",
"markdown-it-katex": "^2.0.3",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"onecolor": "^4.1.0",
"path": "^0.12.7",
"sass": "^1.89.2",
"simplify-js": "^1.2.4",
"unplugin-vue-define-options": "^3.0.0-beta.14",
"url": "^0.11.4",
"vue": "^3.5.13"
},
"devDependencies": {
"@types/node": "^24.0.3",
"@vitejs/plugin-vue": "^5.2.3",
"@vue/tsconfig": "^0.7.0",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vitepress": "^1.6.3",
"vue-tsc": "^2.2.8"
}
}