-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.71 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.71 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
{
"name": "workglow",
"type": "module",
"version": "0.0.10",
"description": "Workglow is a tool for building and running DAG pipelines.",
"workspaces": [
"./packages/*",
"./examples/*"
],
"scripts": {
"build": "turbo run build-package build-example --force",
"build:packages": "turbo run build-package --force",
"build:js": "turbo run build-js --force",
"build:examples": "turbo run build-example --force",
"build:types": "turbo run build-types --force",
"clean": "rm -rf node_modules packages/*/node_modules packages/*/*tsbuildinfo packages/*/dist packages/*/src/**/*\\.d\\.ts packages/*/src/**/*\\.map examples/*/node_modules examples/*/dist examples/*/src/**/*\\.d\\.ts examples/*/src/**/*\\.map .turbo */*/.turbo",
"watch": "turbo run build-package --force && turbo run watch --concurrency 15",
"watch:js": "turbo run build-package --force --ui=stream && turbo run watch-js --concurrency 15 --ui=stream",
"watch-types": "turbo run watch-types --concurrency 15",
"dev": "turbo run dev",
"watch:packages": "concurrently --kill-others -c 'auto' -n sqlite,util,storage,job-queue,task-graph,tasks,ai,provider,test,workflow 'cd packages/sqlite && bun run watch' 'cd packages/util && bun run watch' 'cd packages/storage && bun run watch' 'cd packages/job-queue && bun run watch' 'cd packages/task-graph && bun run watch' 'cd packages/tasks && bun run watch' 'cd packages/ai && bun run watch' 'cd packages/ai-provider && bun run watch' 'cd packages/test && bun run watch' 'cd packages/workflow && bun run watch'",
"docs": "typedoc",
"format": "eslint --fix && prettier \"{packages,examples}/*/src/**/*.{js,ts,tsx,json}\" --check --write",
"build:release": "turbo run build-package",
"test": "bun scripts/test.ts",
"test:bun": "bun scripts/test.ts bun",
"test:vitest": "bun scripts/test.ts vitest",
"bunset": "bunset --patch --all --push --commit --tag --sections=all",
"publish-all": "bun ./scripts/bunsrc-workspace.ts dist && bun run build && bun run test && bun run bunset && bun run publish-login && bun run publish-workspaces",
"publish-login": "npm login",
"publish-workspaces": "bun ./scripts/publish-workspaces.ts"
},
"dependencies": {
"caniuse-lite": "^1.0.30001777"
},
"catalog": {
"@huggingface/transformers": "4.0.0-next.6",
"@mediapipe/tasks-text": "^0.10.32",
"@mediapipe/tasks-vision": "^0.10.32",
"@mediapipe/tasks-audio": "^0.10.32",
"@mediapipe/tasks-genai": "^0.10.26",
"@anthropic-ai/sdk": "^0.78.0",
"@google/generative-ai": "^0.24.1",
"node-llama-cpp": "^3.17.1",
"@huggingface/inference": "^4.13.15",
"ollama": "^0.6.3",
"openai": "^6.27.0",
"tiktoken": "^1.0.22",
"@modelcontextprotocol/sdk": "^1.27.1",
"pg": "^8.20.0",
"@supabase/supabase-js": "^2.98.0",
"@sqlite.org/sqlite-wasm": "^3.51.2-build6",
"better-sqlite3": "^12.6.2"
},
"devDependencies": {
"@sqliteai/sqlite-vector": "^0.9.92",
"@types/bun": "^1.3.10",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "4.0.18",
"bunset": "^1.0.10",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-regexp": "^2.10.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"turbo": "^2.8.14",
"typescript": "5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"bun": "^1.3.0"
},
"packageManager": "bun@1.3.0",
"trustedDependencies": [
"better-sqlite3",
"esbuild",
"onnxruntime-node",
"protobufjs",
"sharp"
]
}