-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.82 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.82 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
{
"name": "@jonahschulte/rtf-editor",
"version": "0.3.0",
"description": "React WYSIWYG editor for RTF documents with track changes support",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"dev": "vite",
"preview": "vite preview",
"example": "vite --config example/vite.config.ts",
"lint": "eslint . --ext ts,tsx",
"test": "vitest",
"test:run": "vitest --run",
"prepublishOnly": "npm run build"
},
"keywords": [
"rtf",
"editor",
"wysiwyg",
"track-changes",
"react",
"quill",
"document-editor"
],
"author": "Jonah Schulte",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jschulte/rtf-editor.git"
},
"homepage": "https://github.com/jschulte/rtf-editor#readme",
"bugs": {
"url": "https://github.com/jschulte/rtf-editor/issues"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@jonahschulte/rtf-toolkit": "^0.5.0",
"quill": "^2.0.0",
"react-quill-new": "^3.3.0"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^24.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.6.0"
}
}