-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.22 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "fibrae",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"@effect-atom/atom": "^0.5.2",
"@effect/language-service": "^0.55.3",
"@effect/platform": "^0.93.0",
"@effect/platform-browser": "^0.73.0",
"@effect/platform-bun": "^0.83.0",
"@effect/platform-node": "^0.100.0",
"effect": "^3.19.15",
"@typescript/native-preview": "^7.0.0-dev.20260314.1",
"typescript": "^5.9.3"
}
},
"type": "module",
"scripts": {
"dev": "mprocs 'bun dev:demo' 'bun build:watch' 'bun dev:server'",
"dev:demo": "cd packages/demo && bun run dev:server",
"dev:server": "cd packages/demo && bun server/index.ts",
"test": "bun --filter demo cypress:run",
"test:open": "bun --filter demo cypress:open --e2e --browser=chromium",
"cypress:run": "cd packages/demo && bun cypress:run",
"cypress:open": "cd packages/demo && bun cypress:open",
"format": "oxfmt --write packages",
"prebuild": "run-s format lint",
"build": "run-s build:core",
"build:watch": "bun --filter fibrae build:watch",
"build:core": "bun --filter fibrae build",
"types:check": "bun --workspaces types:check",
"types:watch:core": "cd packages/fibrae; run-s types:watch",
"types:watch:demo": "cd packages/demo; run-s types:watch",
"types:watch": "run-p types:watch:core types:watch:demo",
"ssr:demo": "bun --filter fibrae build && bun --filter demo ssr",
"lint": "oxlint",
"size": "size-limit",
"size:check": "size-limit --limit"
},
"dependencies": {
"@effect-atom/atom": "0.5.3",
"@effect/platform": "^0.94.5",
"@effect/platform-browser": "^0.74.0",
"@effect/platform-bun": "^0.87.1",
"@effect/platform-node": "^0.104.1",
"mprocs": "^0.8.3",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@size-limit/esbuild": "^12.0.1",
"@size-limit/file": "^12.0.1",
"cypress": "^15.12.0",
"fibrae": "workspace:*",
"jiti": "^2.6.1",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"size-limit": "^12.0.1"
},
"overrides": {
"effect": "catalog:"
},
"size-limit": [
{
"name": "fibrae",
"import": {
"packages/fibrae/dist/index.js": "{ render, h, Suspense, ErrorBoundary }"
},
"limit": "10 kB",
"ignore": [
"effect",
"effect/*",
"@effect/*",
"@effect-atom/*"
]
},
{
"name": "fibrae + router",
"import": {
"packages/fibrae/dist/index.js": "{ render, h, Suspense, ErrorBoundary }",
"packages/fibrae/dist/router/index.js": "{ Router, RouterBuilder, Link }"
},
"limit": "15 kB",
"ignore": [
"effect",
"effect/*",
"@effect/*",
"@effect-atom/*"
]
},
{
"name": "fibrae + router + live",
"import": {
"packages/fibrae/dist/index.js": "{ render, h, Suspense, ErrorBoundary }",
"packages/fibrae/dist/router/index.js": "{ Router, RouterBuilder, Link }",
"packages/fibrae/dist/live/index.js": "{ live, LiveConfig }"
},
"limit": "18 kB",
"ignore": [
"effect",
"effect/*",
"@effect/*",
"@effect-atom/*"
]
}
]
}