-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "@hellocoop/cdk-client",
"version": "2.7.1",
"description": "Hellō Client CDK Construct https://hello.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/hellocoop/cdk-client.git"
},
"homepage": "https://www.hello.dev/docs/sdks/cdk-client",
"keywords": [
"lambda",
"serverless",
"cdk",
"construct",
"aws",
"hello",
"openid",
"oidc",
"sso"
],
"author": {
"name": "Hello Identity Co-op",
"email": "[email protected]",
"url": "https://hello.coop"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hellocoop/cdk-client/issues"
},
"files": [
"dist/*"
],
"main": "dist/client.js",
"types": "dist/client.d.ts",
"scripts": {
"clean": "rimraf dist",
"build-protocol": "cd protocol && npm run build",
"build-authorizer": "cd authorizer && npm run build",
"build": "npm run clean && tsc && npm run build-protocol && npm run build-authorizer",
"install-protocol": "cd protocol && npm install",
"install-cdk-sample": "cd cdk-sample && npm install",
"install-authorize": "cd authorizer && npm install",
"install-all": "npm install && npm run install-protocol && npm run install-authorize && npm run install-cdk-sample",
"canary": "npm run build && npm version prerelease --preid=canary && npm publish --tag=canary",
"cc": "npm run canary && cd cdk-sample && npm run canary"
},
"devDependencies": {
"@hellocoop/definitions": "^1.0.1",
"@types/aws-lambda": "^8.10.134",
"@types/jsonwebtoken": "^9.0.7",
"@types/jwk-to-pem": "^2.0.3",
"@types/node": "^18.2.2",
"constructs": "^10.3.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.533.0",
"aws-cdk-lib": "^2.130.0"
}
}