forked from jbilcke-hf/clapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 2 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": "@aitube/clapper-monorepo",
"version": "0.2.4",
"description": "A monorepo for the Clapper project. Individual packages are in the packages directory.",
"engines": {
"bun": ">=1.0.0"
},
"packageManager": "bun@1.0.25",
"private": true,
"scripts": {
"dev": "bun run --cwd packages/app dev",
"start": "bun run --cwd packages/app start",
"start:prod": "bun run --cwd packages/app start:prod",
"build": "bun run build:all",
"build:all": "bun run build:clap && bun run build:timeline && bun run build:client && bun run build:io && bun run build:colors && bun run build:engine && bun run build:broadway && bun run build:clapper-services && bun run build:app",
"build:clap": "bun run --cwd packages/clap build",
"build:timeline": "bun run --cwd packages/timeline build",
"build:client": "bun run --cwd packages/client build",
"build:io": "bun run --cwd packages/io build",
"build:colors": "bun run --cwd packages/colors build",
"build:engine": "bun run --cwd packages/engine build",
"build:broadway": "bun run --cwd packages/broadway build",
"build:clapper-services": "bun run --cwd packages/clapper-services build",
"build:app": "bun run --cwd packages/app build",
"test": "bun run test:all",
"test:all": "bun run --cwd packages/clap test && bun run --cwd packages/timeline test && bun run --cwd packages/client test && bun run --cwd packages/io test && bun run --cwd packages/colors test && bun run --cwd packages/engine test && bun run --cwd packages/broadway test && bun run --cwd packages/clapper-services test && bun run --cwd packages/app test",
"format": "bun run --cwd packages/app format"
},
"trustedDependencies": [
"@aitube/clapper",
"onnxruntime-node",
"protobufjs"
],
"workspaces": [
"packages/clap",
"packages/timeline",
"packages/client",
"packages/io",
"packages/colors",
"packages/engine",
"packages/broadway",
"packages/clapper-services",
"packages/app"
],
"dependencies": {
}
}