-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "@docen/monorepo",
"version": "0.0.0",
"private": true,
"description": "A modern editor based on TipTap with comprehensive extensions for document processing",
"keywords": [
"docen",
"docx",
"editor",
"export",
"import",
"microsoft-word",
"prosemirror",
"rich-text-editor",
"tiptap",
"typescript",
"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",
"build": "pnpm --filter \"./packages/**\" -r build",
"check": "basis lint && basis fmt",
"bump": "pnpm --filter \"./packages/**\" -r exec basis version",
"prerelease": "pnpm --filter \"./packages/**\" -r exec basis version --prerelease",
"publish": "pnpm --filter \"./packages/**\" -r exec basis publish",
"postinstall": "pnpm dev && basis git setup"
},
"devDependencies": {
"@funish/basis": "0.2.16",
"@types/node": "25.6.0"
}
}