pgconductor-js 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +108472 -0
- package/dist/index.js +12442 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pgconductor-js",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Durable execution using only Postgres",
|
|
5
|
+
"module": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"pgconductor": "./dist/cli/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/psteinroe/pgconductor"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"postgres",
|
|
19
|
+
"queue",
|
|
20
|
+
"task",
|
|
21
|
+
"job",
|
|
22
|
+
"worker",
|
|
23
|
+
"durable",
|
|
24
|
+
"execution",
|
|
25
|
+
"workflow"
|
|
26
|
+
],
|
|
27
|
+
"author": "psteinroe",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public",
|
|
31
|
+
"tag": "latest",
|
|
32
|
+
"provenance": true
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "bun build src/index.ts --outdir dist --target node && bun build cli/index.ts --outdir dist/cli --target node",
|
|
36
|
+
"test": "bun test",
|
|
37
|
+
"test:unit": "bun test tests/unit",
|
|
38
|
+
"test:integration": "bun test tests/integration",
|
|
39
|
+
"typecheck": "tsc --noEmit",
|
|
40
|
+
"perf": "bun perf/run.ts"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@testcontainers/postgresql": "11.8.1",
|
|
44
|
+
"@types/bun": "latest",
|
|
45
|
+
"expect-type": "1.2.2",
|
|
46
|
+
"zod": "4.1.12"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"typescript": "5.7.2"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@standard-schema/spec": "1.0.0",
|
|
53
|
+
"cron-parser": "5.4.0",
|
|
54
|
+
"postgres": "3.4.7",
|
|
55
|
+
"prettier": "3.4.2"
|
|
56
|
+
}
|
|
57
|
+
}
|