-
Notifications
You must be signed in to change notification settings - Fork 420
/
package.json
65 lines (65 loc) · 1.79 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
{
"name": "react-pdf-highlighter",
"version": "8.0.0-rc.0",
"description": "Set of React components for PDF annotation",
"author": "Artem Tyurin <[email protected]>",
"license": "MIT",
"keywords": [
"pdf",
"highlight",
"annotator",
"react-component"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/src/index.js",
"style": "./dist/style.css",
"scripts": {
"start": "npm run dev",
"dev": "vite build && (cd ./example && vite)",
"build": "npm run clean && npm run compile && vite build && npm run build:example",
"compile": "tsc --noEmit",
"build:example": "vite build && (cd ./example && vite build)",
"test": "npm run build && npm run lint && npm run test:e2e",
"test:e2e": "playwright test",
"format": "biome format --write",
"lint": "biome check",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"pdfjs-dist": "4.4.168",
"react-rnd": "^10.4.11",
"ts-debounce": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentcooper/react-pdf-highlighter.git"
},
"bugs": {
"url": "https://github.com/agentcooper/react-pdf-highlighter/issues"
},
"devDependencies": {
"@biomejs/biome": "1.9.0",
"@playwright/test": "^1.45.1",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"playwright": "^1.45.1",
"postcss-import": "^16.1.0",
"typescript": "^5.6.2",
"vite": "^5.3.3",
"vite-plugin-dts": "^4.1.1"
},
"homepage": "https://github.com/agentcooper/react-pdf-highlighter#readme"
}