-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
52 lines (52 loc) · 1.08 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
{
"name": "pdf.js-extract",
"description": "super-simple async PDF reader that extracts text with x,y page positions based on pdf.js",
"homepage": "https://github.com/ffalt/pdf.js-extract",
"keywords": [
"pdf",
"extract"
],
"bugs": {
"url": "https://github.com/ffalt/pdf.js-extract/issues"
},
"version": "0.2.1",
"author": {
"name": "ffalt"
},
"scripts": {
"test": "jest"
},
"contributors": [
{
"name": "Chad Kirby",
"url": "https://github.com/chadkirby"
},
{
"name": "Ilan Copelyn",
"url": "https://github.com/ilanc"
},
{
"name": "Sajjad Hashemian",
"url": "https://github.com/sijad"
}
],
"main": "./lib",
"typings": "lib/index",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ffalt/pdf.js-extract"
},
"dependencies": {
"dommatrix": "0.0.24",
"web-streams-polyfill": "3.2.0"
},
"engines": {
"node": ">=12.0.0"
},
"types": "lib/index.d.ts",
"readmeFilename": "README.md",
"devDependencies": {
"jest": "27.5.1"
}
}