-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 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
48
{
"name": "tila",
"version": "0.2.7",
"private": true,
"license": "MIT",
"type": "module",
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev:setup": "bash scripts/dev-setup.sh",
"dev": "turbo dev --filter=@tila/worker --filter=@tila/ui",
"build": "turbo build",
"test": "turbo test && pnpm run test:scripts",
"test:scripts": "node --test \"scripts/*.test.mjs\"",
"lint": "biome check . && pnpm run version:check",
"check": "biome check --write . && pnpm run version:check",
"typecheck": "turbo typecheck",
"clean": "turbo clean",
"version:check": "node scripts/check-public-versions.mjs",
"version:test": "node --test scripts/version-policy.test.mjs",
"dev:cli": "pnpm --filter tila-cli dev",
"dev:mcp": "tsx --tsconfig tsconfig.json packages/mcp-server/src/index.ts"
},
"pnpm": {
"overrides": {
"esbuild": ">=0.28.1",
"fast-uri": ">=3.1.6",
"form-data": ">=4.0.6",
"hono": ">=4.12.26",
"ip-address": ">=10.3.1",
"miniflare>undici": ">=7.29.0 <8.0.0",
"nanoid": ">=3.3.18",
"postcss": ">=8.5.23",
"react-router": ">=7.18.2 <8.0.0",
"sharp": ">=0.35.0",
"undici": ">=7.29.0 <8.0.0",
"wrangler": ">=4.59.1",
"ws": ">=8.20.1"
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"lefthook": "^1.7.0",
"turbo": "^2.9.18",
"typescript": "^5.7.0",
"vitest": "^4.1.9",
"tsx": "^4.22.4"
}
}