-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.64 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
{
"name": "@abshahin/workflows-sdk",
"version": "0.1.4",
"type": "module",
"description": "Unified TypeScript SDK for typed workflows across Cloudflare Workflows and Bun runtimes.",
"module": "./src/index.ts",
"types": "./src/index.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aashahin/workflows-sdk.git"
},
"homepage": "https://github.com/aashahin/workflows-sdk#readme",
"keywords": [
"cloudflare",
"cloudflare-workers",
"cloudflare-workflows",
"workflow",
"sdk",
"typescript",
"background-jobs"
],
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"default": "./src/index.ts"
},
"./bun": {
"types": "./src/bun/index.ts",
"import": "./src/bun/index.ts",
"default": "./src/bun/index.ts"
},
"./cloudflare": {
"types": "./src/cloudflare/index.ts",
"import": "./src/cloudflare/index.ts",
"default": "./src/cloudflare/index.ts"
},
"./http": {
"types": "./src/http/index.ts",
"import": "./src/http/index.ts",
"default": "./src/http/index.ts"
},
"./scheduler": {
"types": "./src/scheduler/index.ts",
"import": "./src/scheduler/index.ts",
"default": "./src/scheduler/index.ts"
},
"./testing": {
"types": "./src/testing/index.ts",
"import": "./src/testing/index.ts",
"default": "./src/testing/index.ts"
}
},
"files": [
"src",
"README.md",
"LICENSE"
],
"peerDependencies": {},
"dependencies": {},
"devDependencies": {
"bun-types": "^1.3.8",
"typescript": "^5.9.3"
}
}