-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.38 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.38 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@dbos-inc/dbos-sdk",
"version": "0.0.0-placeholder",
"description": "A Typescript framework built on the database",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dbos-inc/dbos-transact-ts"
},
"homepage": "https://docs.dbos.dev/",
"engines": {
"node": ">=20"
},
"keywords": [
"dbos",
"task manager",
"workflow engine",
"workflows",
"orchestration",
"scheduled jobs",
"cron jobs",
"queue",
"background jobs",
"step function",
"durable execution",
"long-running",
"durable workflow",
"reliability",
"parallel processing",
"flow control",
"agentic workflow",
"postgresql"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js",
"require": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./datasource": {
"import": "./dist/src/datasource.js",
"require": "./dist/src/datasource.js",
"types": "./dist/src/datasource.d.ts"
}
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --project tsconfig.json && npm run --workspaces build",
"lint": "eslint --ignore-pattern **/coverage/ .",
"setversion": "npm run --workspaces setversion && grunt setversion",
"test": "npm run build && npm run --workspaces test && jest ./tests --coverage --collectCoverageFrom='src/**/*' --detectOpenHandles",
"prepare": "husky"
},
"bin": {
"dbos": "./dist/src/cli/cli.js",
"dbos-sdk": "./dist/src/cli/cli.js"
},
"devDependencies": {
"@dbos-inc/otel": "packages/otel",
"@eslint/js": "^9.22.0",
"@testcontainers/postgresql": "^11.6.0",
"@types/node": "^20.19.1",
"@types/pg": "^8.11.2",
"@types/supertest": "^6.0.2",
"@types/ws": "^8.18.0",
"eslint": "^9.22.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"testcontainers": "^11.6.0",
"ts-jest": "^29.2.4",
"typescript": "^5.4.5",
"typescript-eslint": "^8.26.1",
"zod": "^4.3.6"
},
"dependencies": {
"commander": "12.0.0",
"pg": "8.11.3",
"serialize-error": "8.1.0",
"superjson": "^1.13.3",
"ws": "^8.18.1",
"yaml": "2.4.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": "prettier --write"
}
}