-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.86 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
{
"name": "@nextcloud/sharing",
"version": "1.0.0-beta.4",
"description": "Front-end utilities for Nextcloud files sharing",
"keywords": [
"nextcloud",
"sharing"
],
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-sharing"
},
"license": "GPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"./public": {
"types": "./dist/public.d.ts",
"default": "./dist/public.mjs"
},
"./ui": {
"types": "./dist/ui/index.d.ts",
"default": "./dist/ui.mjs"
},
"./dialog": {
"types": "./dist/dialog/index.d.ts",
"default": "./dist/dialog.mjs"
}
},
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"build": "vite --mode production build",
"build:doc": "typedoc --skipErrorChecking --out dist/doc lib/index.ts lib/public.ts lib/ui/index.ts && touch dist/doc/.nojekyll",
"dev": "vite --mode development build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ct": "playwright test -c playwright-ct.config.ts",
"test:watch": "vitest run --watch",
"ts:check": "vue-tsc --noEmit",
"watch": "vite --mode development build --watch"
},
"dependencies": {
"@mdi/svg": "^7.4.47",
"@nextcloud/axios": "^2.6.0",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^7.5.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.12.0",
"debounce": "^3.0.0",
"is-svg": "^6.1.0",
"qrcode.vue": "^3.11.0",
"uuid": "^14.0.2",
"vue": "^3.5.0"
},
"devDependencies": {
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/files": "^4.0.0",
"@nextcloud/typings": "^1.10.0",
"@nextcloud/vite-config": "^2.5.4",
"@nextcloud/vue": "^9.12.0",
"@playwright/experimental-ct-vue": "^1.62.1",
"@types/node": "^26.6.1",
"@vitejs/plugin-vue": "^6.0.9",
"@vitest/coverage-v8": "^5.0.1",
"@vue/test-utils": "^2.5.0",
"eslint": "^10.10.0",
"gettext-parser": "^9.1.1",
"happy-dom": "^20.14.5",
"sass-embedded": "^1.104.1",
"typedoc": "^0.28.20",
"typescript": "^6.0.3",
"vitest": "^5.0.0",
"vue": "^3.5.42",
"vue-tsc": "^3.3.11"
},
"engines": {
"node": "^22.0.0 || ^24.0.0 || >=26"
},
"devEngines": {
"packageManager": [
{
"name": "npm",
"version": "^11.3.0",
"onFail": "error"
}
],
"runtime": {
"name": "node",
"version": "^24.0.0",
"onFail": "error"
}
}
}