This repository was archived by the owner on Feb 6, 2026. It is now read-only.
forked from badlogic/lemmy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.8 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.8 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
{
"name": "lemmy-monorepo",
"version": "0.1.0",
"description": "TypeScript API wrapper for multiple LLM providers",
"type": "module",
"private": true,
"workspaces": [
"packages/lemmy",
"packages/lemmy-tui",
"packages/lemmy-cli-args",
"apps/*",
"apps/claude-trace/frontend"
],
"scripts": {
"dev": "npm run build --workspace=packages/lemmy --workspace=packages/lemmy-tui && concurrently --kill-others-on-fail --prefix-colors \"cyan,magenta,yellow,green,blue\" --prefix \"[{name}]\" --names \"lemmy,tui,chat,red-team,bridge\" \"cd packages/lemmy && tsc --watch --pretty\" \"cd packages/lemmy-tui && tsc --watch --pretty\" \"cd apps/lemmy-chat && tsc --watch --pretty\" \"cd apps/red-teaming && tsc --watch --pretty\" \"cd apps/claude-bridge && tsc --watch --pretty\"",
"build": "npm run build --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:run": "npm run test:run --workspaces --if-present",
"format": "prettier --write .",
"format:check": "prettier --check .",
"version:patch": "npm version patch --workspaces && git add . && git commit -m 'Bump versions'",
"version:minor": "npm version minor --workspaces && git add . && git commit -m 'Bump versions'",
"version:major": "npm version major --workspaces && git add . && git commit -m 'Bump versions'",
"publish": "npm run build && npm publish --workspaces --access public",
"prepare": "husky"
},
"devDependencies": {
"concurrently": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"live-server": "^1.2.2",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"lint-staged": {
"*.{ts,js,json,md,yml,yaml}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0"
}
}