-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.21 KB
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
87
88
89
90
91
92
{
"name": "fileforge",
"version": "1.0.0",
"description": "Framework avançado de conversão de arquivos multi-formato",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"fileforge": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint && npm run build"
},
"keywords": [
"file-conversion",
"multi-format",
"pdf",
"docx",
"image",
"audio",
"video",
"ocr",
"metadata",
"batch-conversion",
"serverless",
"cli"
],
"author": {
"name": "Julio Amorim",
"email": "contato@julioamorim.com.br",
"url": "https://github.com/julioamorimdev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/julioamorimdev/FileForge.git"
},
"bugs": {
"url": "https://github.com/julioamorimdev/FileForge/issues"
},
"homepage": "https://github.com/julioamorimdev/FileForge#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"sharp": "^0.33.0",
"pdf-lib": "^1.17.1",
"mammoth": "^1.6.0",
"xlsx": "^0.18.5",
"marked": "^11.1.1",
"jszip": "^3.10.1",
"tesseract.js": "^5.0.4",
"exifr": "^7.1.3",
"commander": "^11.1.0",
"chalk": "^5.3.0",
"ora": "^8.0.1",
"glob": "^10.3.10",
"mime-types": "^2.1.35",
"pdf-parse": "^1.1.1",
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/jest": "^29.5.8",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/mime-types": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
]
}