-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.25 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
{
"name": "quill-delta-from-html",
"version": "1.0.5",
"description": "Convert easily HTML inputs content to Quill Js Delta format",
"main": "dist/quill-delta-from-html.js",
"types": "dist/quill-delta-from-html.d.ts",
"typings": "dist/quill-delta-from-html.d.ts",
"typesVersions": {
"*": {
"dist/quill-delta-from-html.d.ts": [
"dist/quill-delta-from-html.d.ts"
],
"*": [
"dist/*"
]
}
},
"exports": {
".": "./dist/quill-delta-from-html.js",
"./": "./dist/"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"prepublish": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CatHood0/quill-delta-from-html.git"
},
"keywords": [
"parser",
"html",
"delta",
"quill",
"html-to-delta"
],
"author": "CatHood0",
"license": "MIT",
"bugs": {
"url": "https://github.com/CatHood0/quill-delta-from-html/issues"
},
"homepage": "https://github.com/CatHood0/quill-delta-from-html#readme",
"dependencies": {
"quill-delta": "^5.1.0",
"node-html-parser": "^6.1.13"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}