forked from accordproject/concerto-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtargets.json
More file actions
56 lines (56 loc) · 1.3 KB
/
Copy pathtargets.json
File metadata and controls
56 lines (56 loc) · 1.3 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
51
52
53
54
55
56
{
"typescript": {
"cli": "Typescript",
"baseImage": "node:20-alpine",
"tool": "tsc --noEmit",
"type": "compiled"
},
"jsonschema": {
"cli": "JSONSchema",
"baseImage": "node:20-alpine",
"tool": "ajv compile",
"type": "schema"
},
"graphql": {
"cli": "GraphQL",
"baseImage": "node:20-alpine",
"tool": "graphql buildSchema",
"type": "schema"
},
"protobuf": {
"cli": "Protobuf",
"baseImage": "node:20-alpine",
"tool": "protoc",
"type": "schema"
},
"csharp": {
"cli": "CSharp",
"baseImage": "dotnet/sdk:8.0-alpine",
"tool": "dotnet build",
"type": "compiled"
},
"rust": {
"cli": "Rust",
"baseImage": "rust:alpine",
"tool": "cargo check",
"type": "compiled"
},
"java": {
"cli": "Java",
"baseImage": "eclipse-temurin:17-jdk-alpine",
"tool": "javac",
"type": "compiled"
},
"odata": {
"cli": "OData",
"baseImage": "node:20-alpine",
"tool": "xmllint --noout",
"type": "schema"
},
"mermaid": {
"cli": "Mermaid",
"baseImage": "node:20-alpine",
"tool": "mermaid.parse",
"type": "schema"
}
}