-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdub.json
More file actions
31 lines (29 loc) · 743 Bytes
/
dub.json
File metadata and controls
31 lines (29 loc) · 743 Bytes
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
{
"name": "trashcan",
"description": "Move files to trash can (aka recycle bin) programmatically",
"copyright": "Copyright © 2016, Roman Chistokhodov",
"license" : "BSL-1.0",
"authors" : ["Roman Chistokhodov"],
"targetPath" : "lib",
"targetType" : "library",
"targetName" : "trashcan",
"dependencies": {
"xdgpaths" : "~>0.2.5",
"volumeinfo" : "~>0.2.2",
"inilike" : "~>1.2.0"
},
"configurations": [
{
"name": "static",
"versions": [
"TrashCanStatic"
],
"lflags-osx": [
"-framework", "CoreServices"
]
},
{
"name": "dynamic",
}
]
}