-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.5 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.5 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
{
"name": "document-stitcher",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "bun run src/index.ts",
"prepare": "husky install",
"package:win": "bun build --compile --outfile bin/document-stitcher.exe src/index.ts",
"package:mac": "bun build --compile --outfile bin/document-stitcher src/index.ts",
"package:linux": "bun build --compile --outfile bin/document-stitcher src/index.ts",
"test:unit": "bun test src/**/*.test.ts",
"test:integration": "bun test tests/integration/**/*.test.ts",
"test:watch": "bun test --watch",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@mdit/plugin-img-size": "^0.22.3",
"commander": "^14.0.2",
"markdown-it": "^14.1.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-image-size": "^15.0.1",
"markdown-it-mathjax3": "^5.2.0",
"pdf-lib": "^1.17.1",
"puppeteer": "^24.29.1"
},
"devDependencies": {
"husky": "^8.0.0",
"@eslint/js": "^9.39.1",
"@types/bun": "^1.3.2",
"@types/jest": "^30.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.10.1",
"@types/pdf-parse": "^1.1.5",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"pdf-parse": "^2.4.5",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
}
}