-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.55 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.55 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
{
"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": "1.0.1",
"author": {
"name": "ffalt"
},
"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"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/ffalt/pdf.js-extract"
},
"type": "module",
"main": "./lib/index.cjs",
"types": "lib/index.d.ts",
"typings": "lib/index",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.mjs",
"default": "./lib/index.mjs"
}
},
"engines": {
"node": ">= 20.0.0"
},
"scripts": {
"lint": "eslint --ext .cjs,.mjs .",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"jest": "jest",
"fixtures": "node ./scripts/update-fixtures.mjs",
"update:pdfjs": "./scripts/update_pdfjs.sh"
},
"dependencies": {
"dommatrix": "0.1.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"eslint": "10.3.0",
"eslint-plugin-jest": "29.15.2",
"globals": "17.6.0",
"jest": "30.3.0"
}
}