-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.45 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "pg-task",
"author": "IlijaNL",
"version": "0.0.2",
"type": "commonjs",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"main": "dist/index.js",
"files": [
"./dist",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ilijaNL/pg-task.git"
},
"keywords": [
"postgresql",
"postgres",
"queue",
"tasks",
"sqs",
"pg"
],
"bugs": {
"url": "https://github.com/ilijaNL/pg-task/issues"
},
"homepage": "https://github.com/ilijaNL/pg-task#readme",
"scripts": {
"build": "tsup ./src/index.ts --format cjs,esm --dts",
"typecheck": "tsc --noEmit",
"ci:publish": "pnpm run build && changeset publish",
"test": "jest"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@testcontainers/postgresql": "^10.10.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@types/pg": "^8.11.6",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"pg": "^8.12.0",
"prettier": "^3.3.3",
"testcontainers": "^10.10.3",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
},
"dependencies": {
"node-batcher": "^0.1.3",
"serialize-error": "^11.0.3"
}
}