forked from stellR42/vue3-pdf-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.98 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
{
"name": "vue3-pdf-app",
"version": "1.0.3",
"description": "Vue 3 PDF viewer",
"main": "dist/vue3-pdf-app.umd.js",
"unpkg": "dist/vue3-pdf-app.umd.min.js",
"types": "./dist/types/components/pdf-viewer.vue.d.ts",
"repository": {
"type": "git",
"url": "git+/~https://github.com/stellR42/vue3-pdf-app"
},
"files": [
"dist"
],
"keywords": [
"vue",
"vuejs",
"pdfjs",
"pdf",
"viewer"
],
"author": "stellR42",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/stellR42/vue3-pdf-app/issues"
},
"homepage": "/~https://github.com/stellR42/vue3-pdf-app#readme",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:lib": "vue-cli-service build --target lib src/components/pdf-viewer.vue && npm run build:types",
"build:icons": "webpack --config webpack-icons.config.js",
"build:types": "vue-tsc --build tsconfig.lib.json",
"build:npm": "npm run build:lib & npm run build:icons",
"lint": "vue-cli-service lint"
},
"dependencies": {},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@mdi/font": "^7.0.96",
"@types/pdfjs-dist": "^2.10.378",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/eslint-config-typescript": "^9.1.0",
"core-js": "^3.8.3",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^8.0.3",
"mini-css-extract-plugin": "^2.6.1",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"svg-url-loader": "^8.0.0",
"typescript": "~4.5.5",
"vue-router": "^4.0.3",
"vue-tsc": "^1.0.9",
"webpack-cli": "^4.10.0"
}
}