-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.46 KB
/
package.json
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
{
"name": "ellmers",
"type": "module",
"version": "0.0.1",
"description": "Ellmers is a tool for building and running DAG pipelines of AI tasks.",
"workspaces": [
"./packages/*",
"./examples/*"
],
"scripts": {
"build": "bun run build:packages && bun run build:examples",
"build:packages": "bun run build:core && bun run build:storage && bun run build:task && bun run build:ai && bun run build:ai-provider",
"build:core": "cd packages/core && bun run build",
"build:ai": "cd packages/ai && bun run build",
"build:ai-provider": "cd packages/ai-provider && bun run build",
"build:storage": "cd packages/storage && bun run build",
"build:task": "cd packages/task && bun run build",
"build:examples": "bun run bun run build:cli && bun run build:web",
"build:cli": "cd examples/cli && bun run build",
"build:web": "cd examples/web && bun run build",
"clean": "rm -rf node_modules packages/*/node_modules packages/*/dist packages/*/src/**/*\\.d\\.ts packages/*/src/**/*\\.map examples/*/node_modules examples/*/dist examples/*/src/**/*\\.d\\.ts examples/*/src/**/*\\.map",
"watch:packages": "concurrently --kill-others -c 'auto' -n core,task,storage,ai,provider 'cd packages/core && bun run watch' 'sleep 3 && cd packages/task && bun run watch' 'sleep 3 && cd packages/storage && bun run watch' 'sleep 3 && cd packages/ai && bun run watch' 'sleep 6 && cd packages/ai-provider && bun run watch'",
"docs": "typedoc",
"format": "eslint \"{packages|examples}/*/src/**/*.{js,ts,tsx,json}\" --fix && prettier \"{packages|examples}/*/src/**/*.{js,ts,tsx,json}\" --check --write",
"release": "bun run build && bun publish",
"test": "jest"
},
"dependencies": {
"@mediapipe/tasks-text": "^0.10.20",
"@huggingface/transformers": "^3.2.4",
"@sroussey/typescript-graph": "^0.3.14",
"@types/better-sqlite3": "^7.6.12",
"@types/pg": "^8.11.10",
"better-sqlite3": "^9.4.3",
"bun-types": "^1.1.43",
"chalk": "^5.4.1",
"commander": "=11.1.0",
"eventemitter3": "^5.0.1",
"listr2": "^8.2.5",
"nanoid": "^5.0.9",
"pg": "^8.13.1",
"postgres": "^3.4.5",
"rxjs": "^7.8.1",
"storybook": "^8.4.7",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/uuid": "^9.0.8",
"concurrently": "^8.2.2",
"typescript": "^5.7.3"
},
"engines": {
"bun": "^1.1.43"
},
"trustedDependencies": [
"better-sqlite3",
"esbuild",
"onnxruntime-node",
"protobufjs",
"sharp"
]
}