hrms-manual/node_modules/@tato30/vue-pdf/package.json
2023-09-06 14:51:44 +07:00

69 lines
1.8 KiB
JSON

{
"name": "@tato30/vue-pdf",
"version": "1.7.2",
"description": "PDF viewer for Vue 3",
"author": {
"name": "Aldo Hernandez",
"url": "https://github.com/TaTo30"
},
"license": "MIT",
"homepage": "https://github.com/TaTo30/VuePDF/",
"repository": {
"type": "git",
"url": "git+https://github.com/TaTo30/VuePDF.git"
},
"bugs": {
"url": "https://github.com/TaTo30/VuePDF/issues"
},
"keywords": [
"pdf",
"vue",
"viewer"
],
"exports": {
".": {
"require": "./dist/index.umd.js",
"import": "./dist/index.mjs",
"types": "./dist/types/index.d.ts"
},
"./**/*.css": "./dist/*.css",
"./src/*": "./src/*"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "vite --force --config vite.playground.ts",
"build": "npm run build:lib && npm run build:dts",
"build:lib": "vite build",
"build:dts": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.build.json",
"publish": "npm publish --access public",
"publish:beta": "npm publish --tag beta --access public",
"preview": "vite preview --port 5050",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"peerDependencies": {
"vue": "^3.2.33"
},
"dependencies": {
"pdfjs-dist": "3.7.107"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.5",
"@babel/core": "^7.21.8",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@types/node": "^18.16.3",
"@vitejs/plugin-vue": "^4.2.1",
"@vue/eslint-config-prettier": "^7.1.0",
"eslint": "^8.39.0",
"typescript": "^4.9.4",
"vite": "^4.3.4",
"vue": "^3.2.47",
"vue-tsc": "^1.6.3"
}
}