forked from agentcooper/react-pdf-highlighter
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.85 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.85 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
{
"name": "react-pdf-highlighter-extended",
"type": "module",
"version": "8.1.0",
"description": "Set of modern React components for PDF highlighting",
"author": "Daniel Arnould <daniel.s.arnould@gmail.com>",
"license": "MIT",
"contributors": [
{
"name": "Daniel Arnould",
"email": "daniel.s.arnould@gmail.com"
},
{
"name": "Artem Tyurin",
"email": "artem.tyurin@gmail.com"
}
],
"keywords": [
"pdf",
"highlight",
"annotator",
"react-component",
"react"
],
"files": [
"dist"
],
"types": "./dist/esm/index.d.ts",
"module": "./dist/esm/index.js",
"scripts": {
"start": "npm run dev",
"dev": "(cd ./example && vite --force)",
"build": "npm run clean && npm i && npm run build:esm && npm run build:copy-styles && npm run build:example && npm run build:docs",
"build:esm": "tsc",
"build:copy-styles": "cp -r ./src/style ./dist/esm",
"build:example": "(cd ./example && tsc && vite build && mkdir \"../public/\" && cp -r example-app ../public/)",
"build:docs": "npx typedoc",
"clean": "rm -rf dist public node_modules package-lock.json"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"pdfjs-dist": "^4.4.168",
"react-rnd": "^10.4.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielArnould/react-pdf-highlighter.git"
},
"bugs": {
"url": "https://github.com/DanielArnould/react-pdf-highlighter-extended/issues"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"typedoc": "latest",
"typedoc-theme-category-nav": "latest",
"typescript": "^5.3.2",
"vite": "^5.3.3"
}
}