-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.61 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.61 KB
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
{
"name": "@libresign/pdf-elements",
"description": "PDF viewer with draggable and resizable element overlays for Vue 2",
"version": "0.1.1",
"author": "LibreCode <contact@librecode.coop>",
"private": false,
"main": "dist/pdf-elements.umd.js",
"module": "dist/pdf-elements.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/LibreSign/pdf-elements"
},
"bugs": {
"url": "https://github.com/LibreSign/pdf-elements/issues"
},
"homepage": "https://github.com/LibreSign/pdf-elements#readme",
"keywords": [
"pdf",
"viewer",
"annotations",
"draggable",
"resizable",
"libresign",
"vue2"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:lib": "vue-cli-service build --target lib --name pdf-elements src/index.js",
"lint": "vue-cli-service lint --no-fix",
"lint:fix": "vue-cli-service lint"
},
"dependencies": {
"debounce": "^3.0.0",
"pdfjs-dist": "^5.4.530",
"vue": "^2.7.16"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-transform-private-methods": "^7.28.6",
"@nextcloud/browserslist-config": "^3.1.2",
"@vue/cli-plugin-babel": "^5.0.9",
"@vue/cli-plugin-eslint": "^5.0.9",
"@vue/cli-service": "^5.0.9",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^9.24.0",
"postcss": "^8.5.6",
"vue-template-compiler": "^2.7.16"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"files": [
"dist",
"src",
"COPYING",
"README.md"
],
"license": "AGPL-3.0-or-later"
}