-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.16 KB
/
package.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@reapit-cdk/edge-api-swagger",
"version": "0.1.5",
"description": "Add a swagger endpoint to your EdgeAPI",
"homepage": "https://github.com/reapit/ts-cdk-constructs/blob/main/packages/constructs/edge-api-swagger",
"readme": "https://github.com/reapit/ts-cdk-constructs/blob/main/packages/constructs/edge-api-swagger/readme.md",
"bugs": {
"url": "https://github.com/reapit/ts-cdk-constructs/issues"
},
"license": "MIT",
"author": {
"name": "Josh Balfour",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/reapit/ts-cdk-constructs.git"
},
"scripts": {
"publish": "yarn jsii:publish",
"build": "yarn workspace @reapit-cdk/edge-api build && yarn jsii:build && yarn jsii:package",
"check": "yarn run root:check -p $(pwd)",
"lint": "reapit-cdk-eslint",
"test": "yarn run root:test -- $(pwd)",
"integ": "yarn run root:integ -- $(pwd)",
"jsii:build": "jsii --generate-tsconfig tsconfig.jsii.json --fail-on-warnings",
"jsii:package": "jsii-pacmak",
"jsii:publish": "bash ../../../node_modules/publib/bin/publib jsii-out"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"stability": "stable",
"keywords": [
"awscdk"
],
"bundledDependencies": [
"openapi3-ts",
"swagger-ui-dist",
"typescript"
],
"dependencies": {
"openapi3-ts": "^4.1.2",
"swagger-ui-dist": "^5.9.0",
"typescript": "^5.1.3"
},
"peerDependencies": {
"@reapit-cdk/edge-api": "^0.1.2",
"aws-cdk-lib": "^2.96.2",
"constructs": "^10.2.70"
},
"devDependencies": {
"@reapit-cdk/edge-api": "workspace:^",
"@reapit-cdk/eslint-config": "workspace:^",
"@reapit-cdk/tsup": "workspace:^",
"aws-cdk-lib": "2.96.2",
"constructs": "10.2.70",
"jsii": "^5.3.20",
"jsii-pacmak": "^1.94.0",
"publib": "^0.2.812"
},
"jsii": {
"tsc": {
"outDir": "dist",
"rootDir": "src"
},
"versionFormat": "short",
"excludeTypescript": [
"tests"
],
"outdir": "jsii-out",
"targets": {
"python": {
"distName": "reapit-cdk.edge-api-swapper",
"module": "reapit_cdk.edge_api_swagger"
}
}
}
}