-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 KB
/
package.json
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
{
"name": "react-quilljs",
"version": "2.0.5",
"description": "React Hook Wrapper for Quill, powerful rich text editor",
"license": "MIT",
"repository": "gtgalone/react-quilljs",
"author": {
"name": "Jehun Seem",
"email": "[email protected]",
"url": "https://github.com/gtgalone"
},
"scripts": {
"build:cjs": "tsc",
"build:esm": "tsc -m esNext --outDir esm",
"build": "pnpm build:cjs && pnpm build:esm"
},
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"lib",
"esm"
],
"exports": {
"require": "./lib/index.js",
"import": "./esm/index.js",
"default": "./lib/index.js"
},
"keywords": [
"react quill",
"react quilljs",
"react-quill",
"react-quilljs",
"quill",
"quilljs",
"react-hook-quill",
"react-hook-quilljs",
"react-editor",
"text-editor",
"rich-text-editor"
],
"peerDependencies": {
"quill": "^2.0.3",
"react": "17 - 19",
"react-dom": "17 - 19"
},
"devDependencies": {
"@types/react": "^19.0.1",
"@types/quill": "2.0.14",
"@types/node": "22.10.2",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0",
"tslint-plugin-prettier": "2.3.0",
"tslint-react": "5.0.0",
"typescript": "5.7.2"
},
"packageManager": "[email protected]+sha512.7c2ea089e1a6af306409c4fc8c4f0897bdac32b772016196c469d9428f1fe2d5a21daf8ad6512762654ac645b5d9136bb210ec9a00afa8dbc4677843ba362ecd"
}