forked from react-pdf-viewer/react-pdf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.73 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.73 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
{
"name": "@react-pdf-viewer/root",
"version": "0.0.0",
"description": "A React component to view a PDF document",
"license": "https://react-pdf-viewer.dev/license",
"author": {
"name": "Nguyen Huu Phuoc",
"email": "me@phuoc.ng",
"url": "https://twitter.com/nghuuphuoc"
},
"homepage": "https://react-pdf-viewer.dev",
"keywords": [
"react",
"react.js",
"pdf",
"pdf.js",
"pdf viewer"
],
"private": "true",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"postinstall": "npm run bootstrap",
"clean": "lerna run clean",
"build": "lerna run build",
"dev": "lerna run dev",
"test": "lerna run test",
"lint": "eslint packages/**/src/*.ts packages/**/src/*.tsx",
"format": "prettier --write \"packages/**/*.+(js|jsx|json|css|md|ts)\"",
"release": "npm run build && lerna publish from-package"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.1.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"cssnano": "^4.1.10",
"eslint": "^7.15.0",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.0",
"lerna": "^3.22.1",
"less": "^3.13.1",
"pdfjs-dist": "^2.6.347",
"postcss": "^8.2.1",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.0",
"prettier": "^2.2.1",
"react": "^16.8.0 || ^17.0.1",
"react-dom": "^16.8.0 || ^17.0.1",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {
"build": "^0.1.4"
}
}