-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.44 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.44 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
{
"name": "tinyclaw-monorepo",
"version": "2.0.0",
"description": "Your autonomous AI companion",
"license": "GPL-3.0",
"author": "Waren Gonzaga",
"private": true,
"workspaces": [
"packages/*",
"src/*",
"plugins/channel/*",
"plugins/provider/*"
],
"scripts": {
"dev": "bun run --cwd src/cli dev",
"dev:ui": "bun run --cwd src/web dev",
"build": "bun run build:packages && bun run build:apps",
"build:packages": "bun run --filter './packages/*' build",
"build:plugins": "bun run --filter './plugins/**/*' build",
"build:apps": "bun run --cwd src/web build && bun run --cwd src/cli build",
"build:ui": "bun run --cwd src/web build",
"build:landing": "bun run --cwd src/landing build",
"build:all": "bun run build:packages && bun run build:plugins && bun run build:apps",
"start": "bun run --cwd src/cli start",
"test": "bun test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"cli": "bun run src/cli/src/index.ts",
"dev:purge": "bun run cli purge --force",
"dev:landing": "bun run --cwd src/landing dev",
"prepare": "husky || true"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/bun": "latest",
"@types/node": "^25.3.0",
"husky": "^9.1.7",
"typescript": "^5.7.0"
},
"dependencies": {
"@wgtechlabs/log-engine": "^2.3.1"
},
"overrides": {
"undici": "6.23.0"
}
}