-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.83 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.83 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
{
"name": "@opencloud-eu/web-client",
"version": "6.1.0",
"description": "OpenCloud web client",
"license": "AGPL-3.0",
"private": false,
"type": "module",
"author": "OpenCloud GmbH <info@opencloud.eu>",
"homepage": "https://github.com/opencloud-eu/web/tree/main/packages/web-client",
"repository": {
"type": "git",
"url": "https://github.com/opencloud-eu/web",
"directory": "packages/web-client"
},
"files": [
"dist/"
],
"publishConfig": {
"directory": "package",
"linkDirectory": false,
"exports": {
".": {
"default": "./dist/web-client.js",
"types": "./dist/src/index.d.ts"
},
"./graph": {
"default": "./dist/web-client/graph.js",
"types": "./dist/src/graph/index.d.ts"
},
"./graph/generated": {
"default": "./dist/web-client/graph/generated.js",
"types": "./dist/src/graph/generated/index.d.ts"
},
"./ocs": {
"default": "./dist/web-client/ocs.js",
"types": "./dist/src/ocs/index.d.ts"
},
"./sse": {
"default": "./dist/web-client/sse.js",
"types": "./dist/src/sse/index.d.ts"
},
"./webdav": {
"default": "./dist/web-client/webdav.js",
"types": "./dist/src/webdav/index.d.ts"
}
}
},
"exports": {
".": {
"default": "./src/index.ts"
},
"./graph": {
"default": "./src/graph/index.ts"
},
"./graph/generated": {
"default": "./src/graph/generated/index.ts"
},
"./ocs": {
"default": "./src/ocs/index.ts"
},
"./sse": {
"default": "./src/sse/index.ts"
},
"./webdav": {
"default": "./src/webdav/index.ts"
},
"./l10n": {
"default": "./l10n/translations.json"
}
},
"scripts": {
"generate-openapi": "rm -rf src/graph/generated && docker run --rm -v \"${PWD}/src/graph:/local\" openapitools/openapi-generator-cli generate -i https://raw.githubusercontent.com/opencloud-eu/libre-graph-api/main/api/openapi-spec/v1.0.yaml -g typescript-axios -o /local/generated",
"vite": "vite",
"build": "vite build && vue-tsc --project tsconfig.build.json",
"check:types": "vue-tsc --declaration --noEmit --project tsconfig.build.json",
"prepublishOnly": "rm -rf ./package && clean-publish && rm -rf package/dist/tests && find package && cat package/package.json",
"postpublish": "rm -rf ./package"
},
"dependencies": {
"@casl/ability": "^6.8.0",
"@microsoft/fetch-event-source": "^2.0.1",
"axios": "^1.13.6",
"fast-xml-parser": "^5.5.9",
"lodash-es": "^4.17.23",
"luxon": "^3.7.2",
"uuid": "^13.0.0",
"webdav": "^5.9.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/luxon": "3.7.1",
"@types/node": "^25.5.0",
"clean-publish": "6.0.5",
"vite": "^8.0.3",
"vite-plugin-node-polyfills": "0.26.0"
}
}