This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
forked from condorheroblog/merge-pdfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 1.89 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
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
93
{
"name": "@condorhero/merge-pdfs",
"type": "module",
"version": "0.0.7",
"description": "Merging PDF (with Outline).",
"author": "CondorHero",
"license": "MIT",
"homepage": "https://github.com/condorheroblog/merge-pdfs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/condorheroblog/merge-pdfs.git"
},
"bugs": {
"url": "https://github.com/condorheroblog/merge-pdfs/issues"
},
"keywords": [
"merge-pdfs",
"merge-pdf",
"merge-bookmarks",
"merge-outline"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"merge-pdfs": "bin/merge-pdfs.mjs"
},
"files": [
"dist",
"bin"
],
"engines": {
"node": ">=18.5.0"
},
"scripts": {
"prepublishOnly": "nr build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "esno ./src/index.ts",
"coverage": "vitest run --coverage",
"test": "vitest",
"build": "tsup --external ws --external node-fetch",
"build:watch": "tsup --watch",
"typecheck": "tsc --noEmit",
"release": "bumpp -r && npm publish"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"colorette": "^2.0.20",
"fast-glob": "^3.3.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.39.6",
"@types/yargs": "^17.0.24",
"bumpp": "^9.1.1",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.44.0",
"esno": "^0.16.3",
"lint-staged": "^13.2.3",
"pdfjs": "^2.5.0",
"simple-git-hooks": "^2.8.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^0.32.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix"
]
}
}