-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.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
{
"name": "sideffect-workspace",
"version": "0.0.0",
"private": false,
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"workbench/*"
],
"type": "module",
"scripts": {
"build": "vp run -r build",
"build:sideffect": "vp run sideffect#build",
"check": "vp check",
"changeset": "changeset",
"changeset:status": "changeset status",
"changeset:version": "changeset version",
"test": "vp run --filter \"./packages/*\" test",
"test:e2e:vite": "bun run build:sideffect && bun run --cwd workbench/cloudflare-workflows-vite test:e2e",
"test:e2e:tanstack": "bun run build:sideffect && bun run --cwd workbench/cloudflare-workflows-tanstack test:e2e",
"test:e2e": "bun run test:e2e:vite && bun run test:e2e:tanstack",
"prepare": "vp config"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"vite-plus": "catalog:"
},
"overrides": {
"vite": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "bun@1.3.14",
"catalog": {
"@typescript/native-preview": "7.0.0-dev.20260509.2",
"typescript": "6.0.3",
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.24",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.24",
"vite-plus": "0.1.24"
}
}