-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.11 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.11 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
69
70
71
72
73
74
75
76
77
{
"name": "react-pdfjs-multi",
"version": "1.0.0",
"description": "React wrapper for pdfjs with multiple file support",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./dist/react-pdfjs-multi.css": "./dist/react-pdfjs-multi.css",
"./dist/pdf.worker.min.mjs": "./dist/pdf.worker.min.mjs",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown && tsc --emitDeclarationOnly -p tsconfig.build.json",
"build:example": "pnpm --filter react-pdfjs-multi-example build",
"dev:example": "pnpm --filter react-pdfjs-multi-example dev",
"format": "biome format --write .",
"preview:example": "pnpm --filter react-pdfjs-multi-example preview",
"prepare": "pnpm run build",
"lint": "biome check .",
"tsc": "tsc --noEmit -p tsconfig.build.json",
"start": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/optimisticupdate/react-pdfjs-multi.git"
},
"keywords": [
"react",
"pdfjs",
"pdf",
"pdf-viewer"
],
"files": [
"dist"
],
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.22.0",
"author": "Marcus Klein",
"license": "MIT",
"bugs": {
"url": "https://github.com/optimisticupdate/react-pdfjs-multi/issues"
},
"homepage": "https://github.com/optimisticupdate/react-pdfjs-multi#readme",
"devDependencies": {
"@biomejs/biome": "2.3.12",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^14.3.1",
"@types/node": "^25.0.10",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"jsdom": "^24.1.0",
"lightningcss": "^1.30.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.97.3",
"tsdown": "^0.20.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"pdfjs-dist": "^5.4.530"
}
}