generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
44 lines (44 loc) · 825 Bytes
/
manifest.json
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
{
"id": "obsidian-invoice-generator",
"name": "Invoice Generator",
"version": "1.0.0",
"minAppVersion": "0.15.0",
"description": "Generates Monthly Invoice",
"author": "Liudas Survila",
"authorUrl": "https://github.com/lsurvila/obsidian-invoice-generator",
"isDesktopOnly": false,
"settings": {
"invoiceFolder": {
"type": "string",
"default": "invoices"
},
"invoiceNumber": {
"type": "number",
"default": "1"
},
"issuerName": {
"type": "string",
"default": ""
},
"issuerAddress": {
"type": "string",
"default": ""
},
"issuerEmail": {
"type": "string",
"default": ""
},
"hourlyRate": {
"type": "number",
"default": "0"
},
"wiringInstructions": {
"type": "text",
"default": ""
},
"totalDaysOff": {
"type": "number",
"default": "0"
}
}
}