-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.73 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@ezpaarse-project/jspdf-md",
"version": "1.0.1",
"description": "jsPDF plugin for rendering MD into PDF in Node",
"main": "src/index.ts",
"exports": {
".": {
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"dev": "nodemon example/plugin/index.ts",
"build": "tsc",
"lint": "eslint --fix ."
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"package.json": [
"sort-package-json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ezpaarse-project/jsPDF-MD.git"
},
"keywords": [
"jspdf",
"markdown",
"md"
],
"author": "ezTeam",
"license": "CeCILL",
"bugs": {
"url": "https://github.com/ezpaarse-project/jsPDF-MD/issues"
},
"homepage": "https://github.com/ezpaarse-project/jsPDF-MD#readme",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/lodash": "^4.14.202",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"semantic-release": "^21.0.7",
"sort-package-json": "^2.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"canvas": "^2.11.2",
"lodash": "^4.17.21",
"marked": "^11.1.1",
"mime-types": "^2.1.35"
},
"peerDependencies": {
"jspdf": "^2.5.1"
}
}