-
-
Notifications
You must be signed in to change notification settings - Fork 300
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.45 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.45 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
{
"name": "@golevelup/nestjs-graphile-worker",
"version": "2.0.0",
"description": "A nestjs module to integrate graphile-worker into your nestjs application.",
"author": "Underfisk <rodrigorodriguesk8s@gmail.com>",
"homepage": "https://github.com/golevelup/nestjs#readme",
"license": "MIT",
"keywords": [
"NestJS",
"graphile-worker",
"graphile",
"postgres",
"worker"
],
"type": "module",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./*": {
"import": "./lib/*.js",
"require": "./lib/*.cjs"
}
},
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/golevelup/nestjs.git"
},
"scripts": {
"copy-readme": "cp ../../docs/modules/graphile-worker.md ./README2.md",
"build": "tsc --build tsconfig.build.json",
"build:watch": "tsc --build tsconfig.build.json --watch",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"bugs": {
"url": "https://github.com/golevelup/nestjs/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@golevelup/nestjs-discovery": "workspace:^"
},
"devDependencies": {
"graphile-worker": "^0.16.6",
"zod": "^4.3.6"
},
"peerDependencies": {
"graphile-worker": "^0.16.6",
"zod": "^4.2.1"
}
}