-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.62 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
{
"name": "webviewer-react",
"version": "0.0.1",
"description": "",
"main": "src/index.ts",
"types": "src/index.d.ts",
"scripts": {
"build": "node ./esbuild.js && npm run ts-types",
"ts-types": " tsc -d --emitDeclarationOnly --outDir lib/context",
"installpeer": "npm i react react-dom @pdftron/webviewer",
"lint": "eslint --fix ./src ./examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PDFTron/webviewer-react.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PDFTron/webviewer-react/issues"
},
"homepage": "https://github.com/PDFTron/webviewer-react#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"esbuild": "^0.14.1",
"eslint": "^8.4.1",
"eslint-plugin-react": "^7.27.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-typescript": "^0.14.0",
"fs-extra": "^10.0.0",
"typescript": "^4.5.2",
"prettier": "^1.19.1"
},
"peerDependencies": {
"@pdftron/webviewer": "^8.2.0",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}