-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.07 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
{
"name": "restate-nest",
"version": "1.1.9",
"description": "A decorator based easy to use nestjs and restate.dev integration",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit"
},
"keywords": ["restate", "nest", "nestjs", "concurrency", "workflows", "services", "objects"],
"author": "Suben K. Saha",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"jest": "^30.0.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@nestjs/common": ">=10.4.19",
"@restatedev/restate-sdk": ">=1.6.1",
"@restatedev/restate-sdk-clients": ">=1.6.1"
}
}