1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/pdf-viewer/package.json

50 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@joplin/pdf-viewer",
"version": "2.9.0",
"description": "Provides embedded PDF viewers for Joplin",
"main": "dist/main.js",
"types": "src/main.ts",
"private": true,
"publishConfig": {
"access": "restricted"
},
"scripts": {
"tsc": "tsc --project tsconfig.json",
"watch": "webpack --watch --config webpack.config.js --mode=development",
"build": "webpack --config webpack.config.js --mode=production",
"test": "jest",
"test-ci": "yarn test",
"postinstall": "yarn build"
},
"author": "Joplin",
"license": "MIT",
"devDependencies": {
2022-11-15 11:21:45 +02:00
"@types/jest": "29.2.3",
2022-11-05 16:47:55 +02:00
"@types/pdfjs-dist": "2.10.378",
"@types/react": "16.14.34",
"@types/react-dom": "18.0.9",
2022-11-05 16:47:55 +02:00
"@types/styled-components": "5.1.25",
2022-11-15 11:21:45 +02:00
"babel-jest": "29.3.1",
"css-loader": "6.7.2",
2022-11-15 11:21:45 +02:00
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
2022-11-05 16:47:55 +02:00
"style-loader": "3.3.1",
2022-11-15 11:21:45 +02:00
"ts-jest": "29.0.3",
"ts-loader": "9.4.2",
"typescript": "4.9.3",
2022-11-05 16:47:55 +02:00
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
},
"dependencies": {
2022-11-05 15:09:41 +02:00
"@fortawesome/fontawesome-svg-core": "6.1.2",
"@fortawesome/free-solid-svg-icons": "6.1.2",
"@fortawesome/react-fontawesome": "0.2.0",
2022-10-12 16:43:56 +02:00
"@joplin/lib": "~2.9",
2022-11-05 15:09:41 +02:00
"async-mutex": "0.4.0",
2022-11-17 13:25:11 +02:00
"pdfjs-dist": "2.16.105",
2022-11-15 00:37:49 +02:00
"react": "18.2.0",
"react-dom": "18.2.0",
2022-11-05 15:09:41 +02:00
"styled-components": "5.3.5"
}
}