-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.04 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
{
"name": "pdf-pager",
"version": "0.0.13",
"author": "Tyler Getsay",
"license": "MIT",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"pdf-pager": "./dist/cli.js"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"repository": "https://github.com/tylergets/pdf-pager",
"scripts": {
"test": "ava",
"coverage": "c8 ava",
"upgrade": "taze -I",
"build": "tsup src/cli.ts src/index.ts --format cjs,esm --dts --clean"
},
"dependencies": {
"commander": "^11.0.0",
"pdf-lib": "^1.17.1",
"puppeteer": "^22.2.0"
},
"ava": {
"files": [
"tests/**/*.test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"devDependencies": {
"ava": "^5.3.1",
"c8": "^8.0.1",
"pdf.js-extract": "^0.2.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}