47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "dcd",
|
|
"description": "The D Completion Daemon is an auto-complete program for the D programming language",
|
|
"copyright": "Copyright © 2015-2020, Brian Schott",
|
|
"authors": [
|
|
"Brian Schott"
|
|
],
|
|
"license": "GPL-3.0",
|
|
"dependencies": {
|
|
"dsymbol": ">=0.11.2 <0.12.0",
|
|
"libdparse": ">=0.15.4 <0.16.0",
|
|
":common": "*",
|
|
"stdx-allocator": "~>2.77.5",
|
|
"emsi_containers": "~>0.8.0"
|
|
},
|
|
"subPackages": ["common"],
|
|
"versions": ["built_with_dub"],
|
|
"configurations": [
|
|
{
|
|
"name": "library",
|
|
"targetType": "library",
|
|
"excludedSourceFiles": [
|
|
"src/dcd/client/*",
|
|
"src/dcd/server/main.d"
|
|
]
|
|
},
|
|
{
|
|
"name": "client",
|
|
"targetType": "executable",
|
|
"targetPath": "bin/",
|
|
"targetName": "dcd-client",
|
|
"excludedSourceFiles": [
|
|
"src/dcd/server/*"
|
|
]
|
|
},
|
|
{
|
|
"name": "server",
|
|
"targetType": "executable",
|
|
"targetPath": "bin/",
|
|
"targetName": "dcd-server",
|
|
"excludedSourceFiles": [
|
|
"src/dcd/client/*"
|
|
]
|
|
}
|
|
]
|
|
}
|