/[sudobot]/trunk/config/schema/extension.json
ViewVC logotype

Contents of /trunk/config/schema/extension.json

Parent Directory Parent Directory | Revision Log Revision Log


Revision 626 - (show annotations)
Sat Sep 7 09:38:45 2024 UTC (6 months, 3 weeks ago) by rakinar2
File MIME type: application/json
File size: 1066 byte(s)
chore: sync with git

1 {
2 "type": "object",
3 "properties": {
4 "main": {
5 "type": "string"
6 },
7 "src_main": {
8 "type": "string"
9 },
10 "src_directory": {
11 "type": "string"
12 },
13 "build_directory": {
14 "type": "string"
15 },
16 "language": {
17 "type": "string",
18 "enum": [
19 "typescript",
20 "javascript"
21 ]
22 },
23 "build_command": {
24 "type": "string"
25 },
26 "resources": {
27 "type": "string"
28 },
29 "name": {
30 "type": "string"
31 },
32 "description": {
33 "type": "string"
34 },
35 "id": {
36 "type": "string"
37 },
38 "icon": {
39 "type": "string"
40 },
41 "readmeFileName": {
42 "type": "string",
43 "default": "README.md"
44 }
45 },
46 "required": [
47 "id"
48 ],
49 "additionalProperties": false,
50 "$schema": "http://json-schema.org/draft-07/schema#"
51 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26