-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "@restatedev/restate-cdk",
"description": "Restate.dev CDK constructs",
"version": "1.1.0-rc.2",
"author": "Restate Developers",
"license": "MIT",
"email": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/restatedev/cdk.git"
},
"publishConfig": {
"@restatedev:registry": "https://registry.npmjs.org"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --noEmitOnError",
"check": "npm run build && npm run lint && npm run test",
"prebundle": "rm -rf dist",
"postbundle": "cd dist && zip -r index.zip index.js*",
"watch": "tsc -w",
"test": "jest",
"lint": "npx prettier --check .",
"cdk": "cdk"
},
"devDependencies": {
"@restatedev/restate-sdk": "^1.4.0",
"@types/aws-lambda": "^8.10.145",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/source-map-support": "^0.5.10",
"esbuild": "^0.24.0",
"jest": "^29.7.0",
"jest-cdk-snapshot": "^2.2.5",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@aws-sdk/client-secrets-manager": "^3.637.0",
"aws-cdk": "^2.162.1",
"aws-cdk-lib": "^2.162.1",
"constructs": "^10.3.0",
"node-fetch": "^3.3.2"
},
"directories": {
"lib": "lib",
"test": "test"
}
}