-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.29 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.29 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
{
"name": "react-documents",
"version": "2.0.3",
"license": "MIT",
"description": "React document viewer.",
"author": {
"name": "Marcel Hoekstra",
"email": "marcel.hoekstra@outlook.com",
"url": "https://github.com/Marcelh1983/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marcelh1983/document-viewer.git"
},
"keywords": [
"react",
"document",
"viewer",
"pdf",
"docx"
],
"funding": [
{
"type": "individual",
"url": "https://www.patreon.com/marcelh1983"
},
{
"type": "individual",
"url": "https://www.buymeacoffee.com/marcelh1983"
}
],
"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"
}
},
"bugs": {
"url": "https://github.com/Marcelh1983/document-viewer/issues"
},
"homepage": "https://github.com/Marcelh1983/document-viewer/tree/main/packages/react-documents",
"scripts": {
"build": "tsup",
"test": "jest --config jest.config.ts",
"lint": "eslint src"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"dependencies": {
"docviewhelper": "workspace:*"
}
}