-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2 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
75
76
77
78
79
80
{
"name": "@odunlamizo/node-river",
"version": "1.1.3",
"description": "Node.js library to support River integration.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./drivers/pg": {
"types": "./dist/drivers/pg/index.d.ts",
"import": "./dist/drivers/pg/index.js",
"require": "./dist/drivers/pg/index.cjs"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js",
"require": "./dist/types.cjs"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest --runInBand",
"lint": "eslint . --ext .ts,.js --ignore-pattern eslint.config.js",
"format": "prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix --ignore-pattern eslint.config.js",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/OdunlamiZO/node-river.git"
},
"keywords": [
"riverqueue",
"queue",
"node",
"library"
],
"author": "Odunlami Zacchaeus",
"license": "MIT",
"bugs": {
"url": "https://github.com/OdunlamiZO/node-river/issues"
},
"homepage": "https://github.com/OdunlamiZO/node-river#readme",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"@types/pg": "^8.16.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"ts-jest": "^29.4.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"pg": ">=8.0.0"
}
}