-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.24 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.24 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
{
"name": "@nextcloud/dialogs",
"version": "7.3.0",
"description": "Nextcloud dialog helpers",
"keywords": [
"nextcloud"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-dialogs#readme",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-dialogs"
},
"license": "AGPL-3.0-or-later",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./style.css": {
"import": "./dist/style.css"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite --mode production build",
"build:doc": "npm run dev && npm run doc",
"dev": "vite --mode development build",
"doc": "typedoc --tsconfig tsconfig-typedoc.json --highlightLanguages vue --plugin typedoc-plugin-missing-exports --out dist/doc dist/index.d.ts dist/filepicker.d.ts && touch dist/doc/.nojekyll",
"l10n:extract": "node build/extract-l10n.js",
"lint": "eslint lib/",
"lint:fix": "eslint --fix lib/",
"prerelease:format-changelog": "node build/format-changelog.mjs",
"stylelint": "stylelint lib/**/*.vue",
"stylelint:fix": "stylelint lib/**/*.vue --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"ts:check": "vue-tsc --noEmit",
"watch": "vite --mode development build --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"stylelint": {
"extends": "@nextcloud/stylelint-config"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@nextcloud/auth": "^2.5.3",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/browser-storage": "^0.5.0",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/files": "^4.0.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/paths": "^3.1.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/sharing": "^0.4.0",
"@nextcloud/vue": "^9.5.0",
"@types/toastify-js": "^1.12.4",
"@vueuse/core": "^14.2.1",
"p-queue": "^9.0.1",
"toastify-js": "^1.12.0",
"vue": "^3.5.30",
"webdav": "^5.8.0"
},
"devDependencies": {
"@mdi/svg": "^7.4.47",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.0-rc.8",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/stylelint-config": "^3.2.1",
"@nextcloud/vite-config": "^2.5.2",
"@testing-library/vue": "^8.1.0",
"@types/gettext-parser": "^9.0.0",
"@vitest/coverage-v8": "^4.1.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.0",
"core-js": "^3.48.0",
"gettext-extractor": "^4.0.6",
"gettext-parser": "^9.0.1",
"happy-dom": "^20.8.4",
"sass": "^1.98.0",
"stylelint": "^17.4.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.17",
"typedoc-plugin-missing-exports": "^4.1.2",
"typescript": "^5.9.3",
"typescript-plugin-css-modules": "^5.2.0",
"vite": "^7.3.1",
"vitest": "^4.0.10",
"vue-material-design-icons": "^5.3.1",
"vue-tsc": "^3.2.5"
},
"engines": {
"node": "^20 || ^22 || ^24"
},
"devEngines": {
"packageManager": [
{
"name": "npm",
"version": "^11.3.0",
"onFail": "error"
}
],
"runtime": {
"name": "node",
"version": "^24.0.0"
}
}
}