-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjsr.json
More file actions
46 lines (46 loc) · 1.35 KB
/
jsr.json
File metadata and controls
46 lines (46 loc) · 1.35 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
{
"name": "@apexlang/codegen",
"version": "0.2.17",
"description": "Code generators for Apex.",
"keywords": ["apex", "idl", "codegen"],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://www.github.com/apexlang/codegen"
},
"bugs": {
"url": "https://www.github.com/apexlang/codegen/issues"
},
"exports": {
".": "./templates/mod.ts",
"./cs": "./src/cs/mod.ts",
"./go": "./src/go/mod.ts",
"./json-schema": "./src/json-schema/mod.ts",
"./markdown": "./src/markdown/mod.ts",
"./openapiv3": "./src/openapiv3/mod.ts",
"./proto": "./src/proto/mod.ts",
"./python": "./src/python/mod.ts",
"./rest": "./src/rest/mod.ts",
"./rust": "./src/rust/mod.ts",
"./typescript": "./src/typescript/mod.ts",
"./utils": "./src/utils/mod.ts",
"./templates": "./templates/mod.ts",
"./templates/basic": "./templates/basic/mod.ts",
"./templates/generator": "./templates/generator/mod.ts",
"./templates/go": "./templates/go/mod.ts",
"./templates/nodejs": "./templates/nodejs/mod.ts",
"./templates/python": "./templates/python/mod.ts",
"./plugins/typescript": "./src/typescript/plugin.ts"
},
"publish": {
"include": [
"LICENSE",
"README.md",
"definitions",
"templates",
"deps/**/*.ts",
"src/**/*.ts"
],
"exclude": ["src/tests"]
}
}