-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 943 Bytes
/
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
{
"name": "ilovepdf-freedom",
"version": "1.1.0",
"description": "Use iLovePDF API without using an API Key",
"main": "dist/index.js",
"scripts": {
"lint": "eslint \"src/**/*.ts\" --fix",
"format": "prettier . --write",
"build": "tsc -p tsconfig.json",
"prepare": "husky install"
},
"keywords": [
"ilovepdf",
"pdf",
"word",
"pdf-converter",
"jpg2pdf"
],
"author": "Hanif Dwy Putra S <hanifdwyputrasembiring@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": ">=5.31.0",
"@typescript-eslint/parser": ">=5.31.0",
"eslint": ">=8.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": ">=4.4"
},
"dependencies": {
"axios": "^0.27.2",
"form-data": "^4.0.0"
}
}