-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.4 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
{
"name": "fluxstack-live-monorepo",
"private": true,
"version": "0.0.0",
"description": "FluxStack Live Components - Framework-agnostic real-time component system",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "bun run build:core && bun run build:adapters && bun run build:client && bun run build:react",
"build:core": "cd packages/core && bunx tsup",
"build:adapters": "cd packages/elysia && bunx tsup & cd packages/express && bunx tsup & cd packages/fastify && bunx tsup",
"build:client": "cd packages/client && bunx tsup",
"build:react": "cd packages/react && bunx tsup",
"dev": "bunx tsup --watch",
"load-test": "node scripts/load-test.mjs",
"test": "vitest",
"test:run": "vitest run",
"lint": "tsc --noEmit",
"clean": "rm -rf packages/*/dist node_modules",
"publish:dry": "bash scripts/publish.sh",
"publish:npm": "bash scripts/publish.sh --publish"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/ws": "^8.5.0",
"@vitest/coverage-v8": "3.2.4",
"cross-env": "^10.1.0",
"elysia": "^1.4.6",
"express": "^4.21.0",
"react": "^19.1.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vite": "^7.1.0",
"vitest": "^3.2.4",
"ws": "^8.18.0",
"zustand": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}