-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
86 lines (86 loc) · 2.17 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "chromiumly",
"version": "3.9.0",
"description": "A lightweight Typescript library that interacts with Gotenberg's different modules to convert a variety of document formats to PDF files.",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/cherfia/chromiumly.git"
},
"author": "Taha Cherfia <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18.x"
},
"keywords": [
"gotenberg",
"chromium",
"LibreOffice",
"screenshots",
"html",
"markdown",
"pdf",
"docx",
"pptx",
"xlsx"
],
"scripts": {
"clean": "rm -rf dist build",
"lint": "eslint src/ --ext .js,.ts",
"build": "yarn clean && tsc -p tsconfig.json",
"test": "jest --runInBand --ci --coverage --reporters=default --reporters=jest-junit",
"commit": "git-cz",
"format": "yarn prettier . -w",
"release": "release-it",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"devDependencies": {
"@babel/preset-typescript": "7.26.0",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@commitlint/cz-commitlint": "^19.0.3",
"@release-it/conventional-changelog": "9.0.3",
"@types/config": "3.3.5",
"@types/dotenv": "8.2.3",
"@types/form-data": "2.5.2",
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"@types/node-fetch": "2.6.12",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"commitizen": "4.3.1",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"inquirer": "8",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"lint-staged": "^15.2.2",
"prettier": "3.4.1",
"release-it": "17.10.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.7.2"
},
"dependencies": {
"form-data": "4.0.1",
"node-fetch": "2.7.0"
},
"optionalDependencies": {
"config": "3.x",
"dotenv": "16.x"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}