-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.62 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.62 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
{
"name": "@prsm/workflow",
"version": "2.2.0",
"description": "Durable, inspectable workflow engine",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./postgres": {
"types": "./types/postgresDriver.d.ts",
"default": "./src/postgresDriver.js"
},
"./sqlite": {
"types": "./types/sqliteDriver.d.ts",
"default": "./src/sqliteDriver.js"
}
},
"types": "./types/index.d.ts",
"files": [
"src",
"types"
],
"scripts": {
"test": "vitest --reporter=verbose --run",
"test:watch": "vitest",
"prepublishOnly": "npx tsc --declaration --allowJs --emitDeclarationOnly --skipLibCheck --target es2020 --module nodenext --moduleResolution nodenext --strict false --esModuleInterop true --outDir ./types src/index.js src/sqliteDriver.js src/postgresDriver.js"
},
"keywords": [
"workflow",
"durable",
"orchestration",
"state-machine",
"inspection"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nvms/workflow.git"
},
"homepage": "https://github.com/nvms/workflow#readme",
"bugs": {
"url": "https://github.com/nvms/workflow/issues"
},
"dependencies": {
"@prsm/ms": "^2.0.0"
},
"peerDependencies": {
"pg": "^8.0.0",
"sqlite3": "^5.0.0"
},
"peerDependenciesMeta": {
"sqlite3": {
"optional": true
},
"pg": {
"optional": true
}
},
"devDependencies": {
"pg": "^8.16.3",
"sqlite3": "^5.1.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18"
}
}