-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.65 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.65 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
{
"name": "@ownclouders/web-pkg",
"version": "12.3.0",
"description": "ownCloud web pkg",
"license": "AGPL-3.0",
"main": "src/index.ts",
"types": "types.d.ts",
"private": false,
"author": "ownCloud GmbH <devops@owncloud.com>",
"type": "module",
"homepage": "https://github.com/owncloud/web/tree/master/packages/web-pkg",
"repository": {
"type": "git",
"url": "https://github.com/owncloud/web",
"directory": "packages/web-pkg"
},
"files": [
"dist/"
],
"publishConfig": {
"directory": "package",
"linkDirectory": false,
"exports": {
".": {
"import": "./dist/web-pkg.js",
"require": "./dist/web-pkg.umd.cjs",
"types": "./dist/types/index.d.ts"
}
}
},
"scripts": {
"vite": "vite",
"prepublishOnly": "rm -rf ./package && clean-publish && rm -rf package/dist/tests package/dist/*.css && find package && cat package/package.json",
"postpublish": "rm -rf ./package",
"test:unit": "NODE_OPTIONS=--unhandled-rejections=throw vitest"
},
"dependencies": {
"@casl/ability": "^6.8.0",
"@casl/vue": "^2.2.6",
"@chevrotain/regexp-to-ast": "^11.2.0",
"@microsoft/fetch-event-source": "^2.0.1",
"@ownclouders/design-system": "workspace:^",
"@ownclouders/web-client": "workspace:^",
"@pdf-lib/fontkit": "^1.1.1",
"@sentry/vue": "10.38.0",
"@uppy/core": "5.2.0",
"@uppy/drop-target": "4.1.0",
"@uppy/tus": "5.1.1",
"@uppy/utils": "7.2.0",
"@uppy/xhr-upload": "5.2.0",
"@vavt/cm-extension": "^1.11.2",
"@vue/shared": "^3.5.29",
"@vueuse/core": "^14.1.0",
"axios": "^1.13.6",
"deepmerge": "^4.3.1",
"dompurify": "^3.3.1",
"emoji-regex": "^10.6.0",
"filesize": "^11.0.13",
"fuse.js": "^7.1.0",
"highlight.js": "^11.11.1",
"html2canvas": "^1.4.1",
"katex": "^0.16.39",
"lodash-es": "^4.17.23",
"luxon": "^3.7.2",
"mark.js": "^8.11.1",
"marked": "^17.0.4",
"md-editor-v3": "^6.3.1",
"mermaid": "^11.12.2",
"oidc-client-ts": "^3.4.1",
"p-queue": "^9.1.0",
"password-sheriff": "^2.0.0",
"pdf-lib": "^1.17.1",
"pinia": "^3.0.4",
"portal-vue": "^3.0.0",
"prettier": "^3.8.1",
"prismjs": "^1.30.0",
"qs": "^6.14.1",
"screenfull": "^6.0.2",
"uuid": "^13.0.0",
"vue-concurrency": "^5.0.3",
"vue-router": "^5.0.4",
"vue3-gettext": "^2.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@ownclouders/web-test-helpers": "workspace:^",
"@types/lodash-es": "4.17.12",
"@vitest/web-worker": "4.0.10",
"clean-publish": "6.0.1",
"vite": "7.2.2",
"vite-plugin-dts": "4.5.4",
"vite-plugin-node-polyfills": "0.24.0"
}
}