-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.77 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": "talyn",
"version": "0.1.0",
"private": true,
"description": "Mission control for AI-assisted software engineering",
"workspaces": [
"apps/desktop",
"apps/web",
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:desktop\"",
"dev:desktop": "npm run start -w @talyn/desktop",
"dev:backend": "npm run dev -w @talyn/backend",
"dev:db": "supabase start -x edge-runtime,functions,imgproxy,storage,realtime,vector,analytics,inbucket",
"dev:db:stop": "supabase stop",
"dev:redis": "docker compose up -d redis",
"dev:redis:stop": "docker compose down",
"build": "npm run build -w @talyn/shared && npm run build -w @talyn/client && npm run build -w @talyn/backend && npm run build -w @talyn/desktop",
"build:desktop": "npm run build -w @talyn/desktop",
"build:backend": "npm run build -w @talyn/backend",
"package": "npm run package -w @talyn/desktop",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"typecheck": "npm run build -w @talyn/shared && npm run build -w @talyn/client && tsc --noEmit -p packages/backend/tsconfig.json && tsc --noEmit -p packages/cli/tsconfig.json && tsc --noEmit -p packages/mcp-server/tsconfig.json && tsc --noEmit -p apps/desktop/tsconfig.json && tsc --noEmit -p apps/web/tsconfig.json",
"prepare": "husky",
"build:web": "npm run build -w @talyn/web",
"dev:web": "npm run dev -w @talyn/web"
},
"lint-staged": {
"{apps,packages}/**/*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"devDependencies": {
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"supabase": "^2.105.0",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=18.x"
}
}