-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.61 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.61 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
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
{
"name": "@workflow/nest",
"version": "0.0.0-beta.27",
"description": "NestJS integration for Workflow SDK",
"type": "module",
"main": "dist/index.js",
"bin": {
"workflow-nest": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./builder": {
"types": "./dist/builder.d.ts",
"import": "./dist/builder.js",
"default": "./dist/builder.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "tsc --build --clean && rm -rf dist",
"test": "vitest run src"
},
"dependencies": {
"@swc/core": "catalog:",
"@workflow/builders": "workspace:*",
"@workflow/swc-plugin": "workspace:*",
"pathe": "2.0.3"
},
"peerDependencies": {
"@nestjs/common": ">=10.0.0",
"@nestjs/core": ">=10.0.0",
"@swc/cli": ">=0.4.0",
"@swc/core": ">=1.5.0"
},
"peerDependenciesMeta": {
"@nestjs/common": {
"optional": false
},
"@nestjs/core": {
"optional": false
},
"@swc/cli": {
"optional": false
},
"@swc/core": {
"optional": false
}
},
"devDependencies": {
"@nestjs/common": "^11.1.17",
"@nestjs/core": "^11.1.17",
"@types/node": "catalog:",
"@workflow/tsconfig": "workspace:*",
"typescript": "catalog:",
"vitest": "catalog:"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/workflow.git",
"directory": "packages/nest"
}
}