-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.5 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
{
"name": "@docen/monorepo",
"version": "0.0.0",
"private": true,
"description": "Online Office editors monorepo — Tiptap/ProseMirror DOCX engine + converters, Fluent UI web-component editor (<docen-document>), and a Vue 3 adapter",
"keywords": [
"converter",
"docen",
"document",
"docx",
"editor",
"fluent-ui",
"format-conversion",
"html",
"markdown",
"microsoft-word",
"office",
"pagination",
"prosemirror",
"rich-text",
"tiptap",
"typescript",
"web-components",
"wysiwyg"
],
"homepage": "https://github.com/DemoMacro/docen#readme",
"bugs": {
"url": "https://github.com/DemoMacro/docen/issues"
},
"license": "MIT",
"author": {
"name": "Demo Macro",
"email": "abc@imst.xyz",
"url": "https://www.demomacro.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DemoMacro/docen.git"
},
"type": "module",
"scripts": {
"dev": "pnpm --filter \"./packages/**\" -r dev",
"demo": "pnpm --filter @docen/editor demo",
"build": "pnpm --filter \"./packages/**\" -r build",
"check": "vp check --fix",
"test": "vp test run",
"bench": "vp test bench",
"version": "pnpm --filter \"./packages/**\" -r exec basis version",
"publish": "pnpm --filter \"./packages/**\" -r exec basis publish",
"postinstall": "pnpm build && vp config && basis git setup"
},
"devDependencies": {
"@funish/basis": "0.3.0",
"@types/node": "26.1.1",
"vite-plus": "0.2.4"
}
}