-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.29 KB
/
package.json
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
{
"name": "pdfjs-vue3",
"version": "0.1.11",
"description": "Using pdfjs to display PDFs as a vue 3 component.",
"author": "Eugene Wang",
"license": "Apache-2.0",
"homepage": "https://github.com/soukoku/pdfjs-vue",
"repository": {
"type": "git",
"url": "https://github.com/soukoku/pdfjs-vue.git"
},
"bugs": {
"url": "https://github.com/soukoku/pdfjs-vue/issues"
},
"files": [
"dist/pdfjs*",
"dist/style*",
"types/index*",
"types/types*",
"types/PdfHost*"
],
"types": "./types/index.d.ts",
"main": "./dist/pdfjs-vue3.umd.js",
"style": "./dist/style.css",
"module": "./dist/pdfjs-vue3.es.js",
"exports": {
".": {
"import": "./dist/pdfjs-vue3.es.js",
"require": "./dist/pdfjs-vue3.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc",
"build-lib": "vite build -c vite.config.lib.ts && vue-tsc",
"preview": "vite preview"
},
"peerDependencies": {
"pdfjs-dist": "^3.11.174",
"vue": "^3.3.4"
},
"devDependencies": {
"@babel/types": "^7.23.0",
"@types/lodash": "^4.14.199",
"@types/node": "^18.18.5",
"@vitejs/plugin-vue": "^4.4.0",
"lodash": "^4.17.21",
"modern-normalize": "^2.0.0",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vue-tsc": "^1.8.19"
}
}