-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.26 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": "reflow-ts",
"version": "0.5.0",
"description": "Durable workflow execution for TypeScript",
"author": "Daniel Fry",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/danfry1/reflow-ts.git"
},
"homepage": "https://danfry1.github.io/reflow-ts/",
"bugs": "https://github.com/danfry1/reflow-ts/issues",
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"engines": {
"node": ">=18.18.0"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./sqlite-node": {
"types": "./dist/storage/sqlite-node.d.mts",
"import": "./dist/storage/sqlite-node.mjs"
},
"./sqlite-bun": {
"types": "./dist/storage/sqlite-bun.d.mts",
"import": "./dist/storage/sqlite-bun.mjs"
},
"./sqlite-node-builtin": {
"types": "./dist/storage/sqlite-node-builtin.d.mts",
"import": "./dist/storage/sqlite-node-builtin.mjs"
},
"./test": {
"types": "./dist/test/index.d.mts",
"import": "./dist/test/index.mjs"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint:deps": "syncpack lint",
"fix:deps": "syncpack fix",
"dev:website": "vitepress dev website",
"build:website": "vitepress build website",
"preview:website": "vitepress preview website",
"prepublishOnly": "bun run lint:deps && bun run typecheck && bun run test && bun run build"
},
"keywords": [
"workflow",
"durable",
"sqlite",
"background-jobs",
"retry",
"typescript",
"pipeline"
],
"peerDependencies": {
"better-sqlite3": ">=9.0.0"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
}
},
"devDependencies": {
"@types/better-sqlite3": "7.6.13",
"@vitest/coverage-v8": "4.1.8",
"better-sqlite3": "12.10.0",
"syncpack": "15.3.1",
"tsdown": "0.22.2",
"typescript": "6.0.3",
"vitepress": "1.6.4",
"vitest": "4.1.8",
"zod": "4.4.3"
},
"dependencies": {
"@standard-schema/spec": "^1.1.0"
}
}