-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.37 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
{
"name": "stepdaddy",
"version": "0.2.0",
"description": "Git-backed idempotency records for side effectful activities inside Cloudflare Workflows.",
"homepage": "https://github.com/eersnington/stepdaddy#readme",
"bugs": {
"url": "https://github.com/eersnington/stepdaddy/issues"
},
"license": "Apache-2.0",
"author": "Eersnington",
"repository": {
"type": "git",
"url": "git+https://github.com/eersnington/stepdaddy.git"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./cloudflare": "./dist/cloudflare.mjs",
"./local": "./dist/local.mjs",
"./memory": "./dist/memory.mjs",
"./remote": "./dist/remote.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test",
"check": "vp check",
"prepublishOnly": "vp run build",
"prepare": "vp config"
},
"dependencies": {
"isomorphic-git": "1.27.1"
},
"devDependencies": {
"@types/node": "^25.6.2",
"@typescript/native-preview": "7.0.0-dev.20260509.2",
"bumpp": "^11.1.0",
"typescript": "^6.0.3",
"vite-plus": "^0.1.20"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"packageManager": "bun@1.3.14"
}