forked from andrewfhw/quill-to-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "@thebadge/quill-to-pdf",
"version": "1.0.7",
"description": "Create a PDF from a QuillJS delta",
"main": "./dist/main.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"test": "jest",
"build": "webpack",
"prepublishOnly": "npm run build",
"deploy": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thebadge/quill-to-pdf.git"
},
"keywords": [
"quill",
"pdf",
"delta"
],
"author": "Andrew Gilbert, Fork The Badge",
"license": "MIT",
"bugs": {
"url": "https://github.com/thebadge/quill-to-pdf/issues"
},
"homepage": "https://github.com/thebadge/quill-to-pdf#readme",
"devDependencies": {
"@types/file-saver": "^2.0.1",
"@types/jest": "^29.5.2",
"@types/node": "^14.14.20",
"@types/webpack": "^4.41.25",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.17.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1",
"whatwg-fetch": "^3.6.2",
"xhr2": "^0.2.1"
},
"dependencies": {
"quilljs-parser": "^1.0.14",
"ts-node-dev": "^2.0.0"
}
}