-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.56 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.56 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@nextcloud/viewer",
"version": "2.0.0-beta.11",
"description": "The Nextcloud file viewer, and the API for apps to add their own file views",
"keywords": [
"nextcloud",
"viewer",
"files",
"preview"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-viewer",
"bugs": {
"url": "https://github.com/nextcloud-libraries/nextcloud-viewer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud-libraries/nextcloud-viewer.git"
},
"license": "AGPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
},
"scripts": {
"build": "vite --mode production build",
"build:demo": "vite build --config playground/vite.config.ts",
"build:doc": "npm run build && typedoc && touch dist/doc/.nojekyll",
"check:size": "node build/check-bundle-size.mjs",
"test:mutation": "stryker run",
"dev": "vite --mode development build",
"l10n:extract": "node build/extract-l10n.js",
"lint": "eslint lib/ __tests__/ e2e/ e2e-server/ playground/",
"lint:fix": "eslint --fix lib/ __tests__/ e2e/ e2e-server/ playground/",
"playground": "vite serve --config playground/vite.config.ts",
"prepack": "npm run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:server": "playwright test --config playwright.server.config.ts",
"build:e2e-app": "npm run build && vite build --config e2e-server/vite.config.ts",
"test:watch": "vitest watch",
"typecheck": "vue-tsc --noEmit -p tsconfig.check.json",
"watch": "vite --mode development build --watch",
"check:imports": "node build/check-published-imports.mjs"
},
"dependencies": {
"@mdi/svg": "^7.4.47",
"@nextcloud/image-editor": "^1.0.0-beta.6",
"@nextcloud/logger": "^3.0.3",
"@skjnldsv/vue-plyr": "^7.5.0",
"debounce": "^3.0.0",
"dompurify": "^3.4.14",
"opensheetmusicdisplay": "^2.1.3",
"vue-material-design-icons": "^5.3.1",
"webdav": "^5.10.0"
},
"peerDependencies": {
"@nextcloud/axios": "^2.5.2",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^7.5.0",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/files": "^4.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/paths": "^3.1.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/sharing": "^0.4.0 || ^1.0.0-beta.2",
"@nextcloud/vue": "^9.13.0",
"vue": "^3.5.0"
},
"devDependencies": {
"@nextcloud/axios": "^2.5.2",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^7.5.0",
"@nextcloud/e2e-test-server": "^0.6.1",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/files": "^4.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/paths": "^3.1.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/sharing": "^0.4.0",
"@nextcloud/vite-config": "^2.5.4",
"@nextcloud/vue": "^9.13.0",
"@playwright/test": "^1.62.1",
"@stryker-mutator/core": "^10.0.0",
"@stryker-mutator/vitest-runner": "^10.0.0",
"@types/node": "^24.9.1",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/coverage-v8": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"gettext-extractor": "^4.0.1",
"gettext-parser": "^8.0.0",
"jsdom": "^27.0.1",
"sass": "^1.103.1",
"typedoc": "^0.28.20",
"typescript": "^5.9.3",
"vite": "^7.1.11",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vitest": "^3.2.4",
"vue": "^3.5.42",
"vue-tsc": "^3.3.11"
}
}