-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.7 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
{
"name": "mandoo-editor",
"version": "1.2.0",
"description": "A modern, lightweight WYSIWYG rich text editor for React & Next.js — feature-flagged, fully typed, zero runtime dependencies.",
"author": "Mohammad Ali Rahimi <hi@markrahimi.com> (https://markrahimi.com)",
"license": "MIT",
"homepage": "https://mandooeditor.markrahimi.com",
"repository": {
"type": "git",
"url": "git+https://github.com/markrahimi/mandoo-editor.git"
},
"bugs": {
"url": "https://github.com/markrahimi/mandoo-editor/issues"
},
"keywords": [
"wysiwyg",
"editor",
"rich-text",
"react",
"nextjs",
"typescript",
"contenteditable",
"markdown",
"block-editor"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./styles": {
"types": "./dist/styles.d.ts",
"import": "./dist/styles.css",
"require": "./dist/styles.css"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": [
"./dist/styles.css"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run type-check"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"react-dom": {
"optional": false
}
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"tsup": "^8.4.0",
"typescript": "^5.0.0"
}
}