-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.17 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.17 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
78
79
80
81
{
"name": "@epam/pdf-highlighter-kit",
"version": "0.0.5",
"description": "High-performance PDF viewer with intelligent highlighting and text selection capabilities",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"styles",
"README.md"
],
"scripts": {
"build": "npm run build:ts && npm run build:css",
"build:ts": "tsc -p tsconfig.json",
"build:css": "cp src/styles/*.css dist/",
"prepublishOnly": "npm run build",
"dev": "tsc -w",
"dev:example": "cd example && npm run dev",
"format": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,css}\"",
"format:fix": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit"
},
"keywords": [
"pdf",
"viewer",
"highlight",
"annotation",
"text-selection",
"ner",
"named-entity-recognition",
"performance",
"typescript"
],
"author": "Podruzhinskii Stanislav",
"license": "Apache-2.0",
"peerDependencies": {
"pdfjs-dist": "^5.4.149"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/react": "^19.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/ui": "^1.0.4",
"eslint": "^8.0.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"happy-dom": "^12.10.3",
"prettier": "^3.7.4",
"typescript": "^5.0.0",
"typescript-eslint": "^8.50.0",
"vite": "^7.3.0",
"vitest": "^1.0.4"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/epam/pdf-highlighter-kit.git"
},
"homepage": "https://github.com/epam/pdf-highlighter-kit#readme",
"bugs": {
"url": "https://github.com/epam/pdf-highlighter-kit/issues"
}
}