-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.98 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
62
63
64
65
66
{
"name": "files_pdfviewer",
"description": "PDF viewer plugin for Nextcloud",
"version": "9.0.0-dev.0",
"author": "John Molakvoæ <skjnldsv@protonmail.com>",
"contributors": [],
"bugs": {
"url": "https://github.com/nextcloud/files_pdfviewer/issues"
},
"repository": {
"url": "https://github.com/nextcloud/files_pdfviewer",
"type": "git"
},
"homepage": "https://github.com/nextcloud/files_pdfviewer",
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"prebuild": "rm -rf js css && npm run pdfjs:get",
"build": "vite build",
"dev": "vite build --mode development",
"watch": "vite build --mode development --watch",
"pdfjs:get": "node pdfjs-get.js",
"test": "vitest run",
"lint": "eslint --ext .js,.vue src tests/js vitest.config.js",
"lint:fix": "eslint --ext .js,.vue src tests/js vitest.config.js --fix",
"stylelint": "stylelint src public",
"stylelint:fix": "stylelint src public --fix"
},
"dependencies": {
"@nextcloud/auth": "^2.6.0",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/dialogs": "^7.5.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.3.0",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/paths": "^3.1.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/sharing": "^0.4.0",
"@nextcloud/vue": "^9.11.0",
"pdfjs-dist": "5.7.284",
"vue": "^3.5.42"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.3.0",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/stylelint-config": "^3.2.2",
"@nextcloud/vite-config": "^2.5.4",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/test-utils": "^2.5.0",
"adm-zip": "^0.6.1",
"axios": "^1.13.6",
"cli-progress": "^3.12.0",
"jsdom": "^30.0.1",
"sass": "^1.104.0",
"vite": "^7.3.6",
"vitest": "^5.0.1"
}
}