-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.51 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
{
"name": "pdfdataextract",
"version": "3.2.0",
"description": "Extract data from a pdf with pure javascript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\" --cache",
"lint:fix": "eslint \"src/**/*.ts\" --cache --fix",
"build": "tsc",
"test": "jest",
"prepare": "npm run build",
"build:doc": "typedoc src/index.ts"
},
"keywords": [
"pdf",
"pdf.js",
"pdfjs",
"parse",
"parser",
"json",
"text",
"data",
"crawler",
"extract",
"extractor"
],
"dependencies": {
"pdfjs-dist": "2.10.377"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.17.27",
"@types/opentype.js": "^1.3.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-deprecation": "^1.2.1",
"eslint-plugin-jsdoc": "^33.3.0",
"jest": "^27.3.0",
"ts-jest": "^27.0.7",
"typedoc": "^0.22.6",
"typedoc-github-wiki-theme": "^0.6.0",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^4.4.4",
"canvas": "^2.8.0",
"pureimage": "^0.3.5",
"tesseract.js": "^2.1.5"
},
"homepage": "https://github.com/lublak/pdfdataextract#readme",
"bugs": {
"url": "https://github.com/lublak/pdfdataextract/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lublak/pdfdataextract.git"
},
"author": "lublak",
"license": "MIT"
}