-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.48 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
{
"name": "ellmers",
"type": "module",
"version": "0.0.1",
"description": "Ellmers is a tool for building and running DAG pipelines of AI tasks.",
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "( cd packages/core && bun run build ) && ( cd packages/cli && bun run build ) && ( cd packages/web && bun run build )",
"clean": "rm -rf node_modules packages/*/node_modules packages/*/dist",
"watch": "concurrently --kill-others -c 'auto' -n core,cli 'cd packages/core && bun run watch' 'sleep 1 && cd packages/cli && bun run watch'",
"docs": "typedoc",
"format": "eslint \"{packages}/*/src/**/*.{js,ts,tsx,json}\" --fix && prettier \"{packages}/*/src/**/*.{js,ts,tsx,json}\" --check --write",
"release": "npm run build && npm publish",
"test": "jest"
},
"dependencies": {
"@mediapipe/tasks-text": "^0.10.12",
"@sroussey/transformers": "^3.0.0-alpha.2",
"@sroussey/typescript-graph": "^0.3.14",
"@types/better-sqlite3": "^7.6.9",
"@types/pg": "^8.11.2",
"better-sqlite3": "^9.4.3",
"bun-types": "^1.1.3",
"chalk": "^5.3.0",
"commander": "=11.1.0",
"eventemitter3": "^5.0.1",
"listr2": "^8.0.2",
"nanoid": "^5.0.7",
"pg": "^8.11.3",
"postgres": "^3.4.3",
"rxjs": "^7.8.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/uuid": "^9.0.8",
"concurrently": "^8.2.2",
"typescript": "^5.4.4"
},
"engines": {
"bun": "^1.1.3"
},
"trustedDependencies": [
"protobufjs"
]
}