forked from oomol-lab/open-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.78 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
{
"name": "@oomol-lab/open-flow-server",
"version": "0.1.0-beta.3",
"private": true,
"license": "Apache-2.0",
"type": "module",
"scripts": {
"benchmark:runtime": "bun run build && node --expose-gc --no-node-snapshot scripts/benchmark-runtime.mjs",
"build": "bun scripts/build.ts",
"check": "bun run format -- --check && bun run lint && tsc --noEmit",
"dev": "vite --port 5174 --clearScreen false --strictPort",
"format": "oxfmt browser index.html node scripts test package.json tsconfig.json vite.config.ts vitest.config.ts",
"lint": "oxlint --deny-warnings browser node scripts test vite.config.ts vitest.config.ts",
"start": "node --no-node-snapshot dist/server/main.js",
"test": "bun run build && node --no-node-snapshot node_modules/vitest/vitest.mjs run --config vitest.config.ts",
"test:coverage": "bun run build && node --no-node-snapshot node_modules/vitest/vitest.mjs run --config vitest.config.ts --coverage",
"test:docker": "bun scripts/check-docker.ts"
},
"dependencies": {
"@hono/node-server": "2.1.1",
"@oomol-lab/open-flow": "workspace:*",
"effect": "4.0.0-rc.112",
"hono": "4.13.3",
"isolated-vm": "7.0.1",
"node-gyp-build": "4.8.4",
"pino": "10.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "2.0.7",
"val-i18n": "^0.1.14",
"val-i18n-react": "^0.1.7"
},
"devDependencies": {
"@tailwindcss/vite": "^4",
"@types/node": "^26.0.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@unocss/vite": "66.7.5",
"@vitejs/plugin-react": "6.0.5",
"@vitest/coverage-v8": "4.1.11",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"sass": "1.101.0",
"tailwindcss": "^4",
"typescript": "7.0.2",
"vite": "8.2.1",
"vitest": "^4.1.10"
}
}