-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.38 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.38 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
{
"name": "@nextcloud/files",
"version": "4.0.0",
"description": "Nextcloud files utils",
"keywords": [
"nextcloud",
"files",
"library"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-files",
"bugs": {
"url": "https://github.com/nextcloud-libraries/nextcloud-files/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-files.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"
},
"./dav": {
"types": "./dist/dav/index.d.ts",
"import": "./dist/dav.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite --mode production build",
"build:doc": "typedoc --out dist/doc lib/dav/index.ts lib/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:watch": "vitest watch",
"ts:check": "tsc --noEmit",
"watch": "vite --mode development build --watch"
},
"overrides": {
"@codecov/vite-plugin": {
"vite": "^7.0"
}
},
"dependencies": {
"@nextcloud/auth": "^2.5.3",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/paths": "^3.1.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/sharing": "^0.4.0",
"is-svg": "^6.1.0",
"typescript-event-target": "^1.1.2",
"webdav": "^5.9.0"
},
"devDependencies": {
"@codecov/vite-plugin": "^1.9.1",
"@nextcloud/eslint-config": "^9.0.0-rc.8",
"@nextcloud/typings": "^1.10.0",
"@nextcloud/vite-config": "^2.5.2",
"@types/node": "^25.3.5",
"@vitest/coverage-istanbul": "^4.0.18",
"css.escape": "^1.5.1",
"fast-xml-parser": "^5.4.2",
"jsdom": "^28.1.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.17",
"typedoc-plugin-missing-exports": "^4.1.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.14"
},
"engines": {
"node": "^24.0.0"
},
"devEngines": {
"packageManager": [
{
"name": "npm",
"version": "^11.3.0"
}
],
"runtime": {
"name": "node",
"version": "^24.0.0"
}
}
}