forked from hrynko/vue-pdf-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "vue-pdf-embed",
"version": "2.0.4",
"description": "PDF embed component for Vue",
"keywords": [
"vue",
"vuejs",
"pdf"
],
"license": "MIT",
"author": "Aliaksei Hrynko (https://github.com/hrynko)",
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js",
"types": "./dist/types/index.d.ts"
},
"./dist/index.essential.mjs": {
"import": "./dist/index.essential.mjs",
"types": "./dist/types/index.essential.d.ts"
},
"./dist/style/*.css": "./dist/style/*.css"
},
"style": "./dist/style/index.css",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"repository": "github:hrynko/vue-pdf-embed",
"scripts": {
"prepare": "husky install && npm run build",
"dev": "vite -c vite.config.dev.ts",
"build": "vite build && vite build -c vite.config.essential.ts --emptyOutDir false",
"postbuild": "vue-tsc -p tsconfig.build.json",
"test": "vitest",
"lint": "eslint . --ext .js,.ts,.vue --fix --ignore-path .gitignore",
"format": "prettier . --write --ignore-path .gitignore"
},
"dependencies": {
"pdfjs-dist": "^4.3.136"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/clean-css": "^4.2.11",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.2",
"@vue/tsconfig": "^0.4.0",
"clean-css": "^5.3.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.18.1",
"happy-dom": "^12.10.3",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"rollup-plugin-copy": "^3.5.0",
"sass": "^1.65.1",
"typescript": "^5.2.2",
"vite": "^4.4.7",
"vitest": "^0.34.6",
"vue": "^3.3.0",
"vue-eslint-parser": "^9.3.2",
"vue-tsc": "^1.8.22"
},
"peerDependencies": {
"vue": "^3.3.0"
}
}