-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1 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
{
"name": "transfer",
"version": "1.0.1",
"description": "Add a file to Nextcloud from a web link.",
"repository": {
"type": "git",
"url": "git+https://github.com/beleon/transfer.git"
},
"author": "Daniel Thwaites",
"contributors": [
"Leon Becker"
],
"license": "AGPL",
"bugs": {
"url": "https://github.com/beleon/transfer/issues"
},
"homepage": "https://github.com/beleon/transfer#readme",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"scripts": {
"build": "vite build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch"
},
"type": "module",
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/axios": "^2.6.0",
"@nextcloud/files": "^3.12.2",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/vite-config": "^1.7.2",
"vite": "^7.3.6"
}
}