-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.84 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "tiny-chat",
"type": "module",
"private": true,
"scripts": {
"dev:server": "dotenv run -- pnpm --filter @tiny-chat/server run dev",
"start:server": "dotenv run -- pnpm --filter @tiny-chat/server run start",
"dev:web": "dotenv run -- node scripts/use-server.ts \"[web] pnpm --filter @tiny-chat/web run dev\"",
"dev:cli": "dotenv run -- node scripts/use-server.ts \"[cli] pnpm --filter @tiny-chat/cli run dev\"",
"dev:tauri": "dotenv run -- node scripts/use-server.ts \"[tauri] pnpm --filter @tiny-chat/tauri run tauri dev\"",
"dev:tauri:ios": "dotenv run -- node scripts/use-server.ts --host \"[tauri] pnpm --filter @tiny-chat/tauri run tauri ios dev --host\"",
"dev:tauri:android": "dotenv run -- node scripts/use-server.ts --host \"[tauri] pnpm --filter @tiny-chat/tauri run tauri android dev --host\"",
"open:tauri:ios": "dotenv run -- node scripts/use-server.ts --host \"[tauri] pnpm --filter @tiny-chat/tauri run tauri ios dev --host --open\"",
"open:tauri:android": "dotenv run -- node scripts/use-server.ts --host \"[tauri] pnpm --filter @tiny-chat/tauri run tauri android dev --host --open\"",
"build:tauri": "dotenv run -- pnpm --filter @tiny-chat/tauri run tauri build",
"build:tauri:ios": "dotenv run -- pnpm --filter @tiny-chat/tauri run tauri ios build",
"build:tauri:android": "dotenv run -- pnpm --filter @tiny-chat/tauri run tauri android build",
"build:app": "dotenv run -- pnpm --filter @tiny-chat/app run build",
"build:cli": "dotenv run -- pnpm --filter @tiny-chat/cli run build",
"install:cli": "dotenv run -- pnpm --filter @tiny-chat/cli build && cp apps/cli/dist/tiny-chat ~/.local/bin/tiny-chat",
"test": "turbo test",
"knip": "knip"
},
"devDependencies": {
"@biomejs/biome": "^2.5.14",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^11.0.1",
"@semantic-release/release-notes-generator": "^14.1.1",
"@types/node": "^26.6.2",
"@types/wait-on": "^5.3.4",
"concurrently": "^10.0.5",
"conventional-changelog-conventionalcommits": "^10.4.0",
"dotenv-cli": "^11.0.0",
"knip": "^6.37.0",
"playwright": "^1.63.0",
"semantic-release": "^25.0.9",
"tsx": "^4.23.13",
"turbo": "^2.11.2",
"typescript": "^7.0.2",
"vite": "^8.3.0",
"vitest": "^5.0.1",
"wait-on": "^9.1.0"
},
"packageManager": "pnpm@12.3.4+sha512.961aa41fb077da3a04a441d9f8e15ebc0c96da8ef710b2eb67bf9ee7cb0610eabd48f1fd85f51cffe73846785fa0f87c56a3a872a1d893f8446741b5cce45457",
"dependencies": {
"@commander-js/extra-typings": "^15.0.0",
"@modelcontextprotocol/client": "^2.0.0",
"@ryangarber/better-auth-adapter-prisma": "^0.1.4",
"@trpc/client": "^11.19.0",
"@trpc/server": "^11.19.0",
"ai": "^7.0.107",
"better-auth": "^1.7.5",
"dotenv": "^18.0.1",
"superjson": "^2.2.6",
"temporal-polyfill": "^1.0.5",
"temporal-zod": "^0.7.0",
"zod": "^4.6.5"
}
}