-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.49 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.49 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
{
"name": "workflow-worlds",
"version": "0.0.0",
"private": true,
"description": "Custom World implementations for the Workflow DevKit",
"type": "module",
"scripts": {
"build": "turbo run build --filter='!@workflow-worlds/workbench'",
"test": "turbo run test --filter='!@workflow-worlds/workbench'",
"typecheck": "turbo run typecheck --filter='!@workflow-worlds/workbench'",
"clean": "pnpm -r clean && rm -rf .turbo",
"bench": "pnpm --filter @workflow-worlds/workbench bench",
"bench:starter": "WORKFLOW_TARGET_WORLD=@workflow-worlds/starter pnpm bench",
"bench:mongodb": "WORKFLOW_TARGET_WORLD=@workflow-worlds/mongodb pnpm bench",
"bench:redis": "WORKFLOW_TARGET_WORLD=@workflow-worlds/redis pnpm bench",
"e2e": "./scripts/e2e-upstream.sh",
"e2e:starter": "./scripts/e2e-upstream.sh starter",
"e2e:turso": "./scripts/e2e-upstream.sh turso",
"e2e:mongodb": "./scripts/e2e-upstream.sh mongodb",
"e2e:redis": "./scripts/e2e-upstream.sh redis",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter='!@workflow-worlds/workbench' && changeset publish"
},
"keywords": [
"workflow",
"world",
"durable-functions",
"devkit"
],
"author": "Dustin Townsend",
"license": "MIT",
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=22"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"turbo": "^2.6.1"
}
}