-
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.1",
"author": "Restate Developers",
"license": "MIT",
"email": "code@restate.dev",
"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.3.0",
"@types/aws-lambda": "^8.10.145",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"@types/source-map-support": "^0.5.10",
"esbuild": "^0.23.1",
"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.0",
"typescript": "^5.5.4"
},
"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"
}
}