forked from Tatsh/kate-wakatime
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.wiswa.jsonnet
More file actions
50 lines (46 loc) · 1.11 KB
/
.wiswa.jsonnet
File metadata and controls
50 lines (46 loc) · 1.11 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
local utils = import 'utils.libjsonnet';
(import 'defaults.libjsonnet') + {
local top = self,
// General settings
// Shared
github_username: 'Tatsh',
security_policy_supported_versions: { '1.5.x': ':white_check_mark:' },
authors: [
{
'family-names': 'Udvare',
'given-names': 'Andrew',
email: 'audvare@gmail.com',
name: '%s %s' % [self['given-names'], self['family-names']],
},
],
project_name: 'kate-wakatime',
version: '1.5.1',
description: 'Kate plugin to interface with WakaTime.',
keywords: ['kate', 'kde', 'plasma', 'wakatime'],
want_main: false,
copilot: {
intro: 'kate-wakatime is a Kate plugin that interfaces with WakaTime, a service that provides metrics and insights about your coding activity.',
},
social+: {
mastodon+: { id: '109370961877277568' },
},
// GitHub
github+: {
funding+: {
ko_fi: 'tatsh2',
liberapay: 'tatsh2',
patreon: 'tatsh2',
},
},
// C++ only
cmake+: {
uses_qt: true,
},
project_type: 'c++',
vcpkg+: {
dependencies: [{
name: 'ecm',
'version>=': '6.7.0',
}],
},
}