-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.39 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
{
"name": "pdf-component-vue",
"version": "0.7.2",
"private": false,
"license": "Apache-2.0",
"description": "PDF Rendering component for Vue 3 applications",
"author": {
"name": "escape-llc",
"url": "https://github.com/escape-llc",
"email": "[email protected]"
},
"keywords": [
"vue",
"vuejs",
"pdf",
"pdfjs"
],
"repository": {
"type": "git",
"url": "https://github.com/escape-llc/pdf-component-vue"
},
"type": "module",
"scripts": {
"dev": "vite",
"dev:host": "vite --host",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"coverage:unit": "vitest run --coverage",
"test:e2e": "npx playwright test --project=GoogleChrome",
"package": "vite build && npm pack --pack-destination ./dist"
},
"files": [
"dist/pdf-component-vue.es.js",
"dist/style.css"
],
"exports": {
".": {
"import": "./dist/pdf-component-vue.es.js"
},
"./pdf-component-vue.css": "./dist/style.css"
},
"module": "./dist/pdf-component-vue.es.js",
"dependencies": {
"vue3-treeview": "^0.4.2"
},
"peerDependencies": {
"pdfjs-dist": "^4.2.67",
"vue": "^3.3.4",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"@types/node": "^20.12.11",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.6.0",
"@vue/test-utils": "^2.4.6",
"jsdom": "^24.0.0",
"vite": "^5.2.11",
"vitest": "^1.6.0"
}
}