-
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.2 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.2 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": "t-stack",
"private": true,
"license": "MIT",
"author": "Timothy Githinji",
"repository": {
"type": "git",
"url": "git+https://github.com/timothygithinji/t-stack.git"
},
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"lint": "ultracite check",
"lint:fix": "ultracite fix",
"format": "biome format --write .",
"smoke": "bun --filter @timothygithinji/t-stack smoke",
"sync-template": "bun --filter @timothygithinji/t-stack sync-template",
"release": "bun --filter @timothygithinji/t-stack release",
"release:dry": "bun --filter @timothygithinji/t-stack release:dry",
"prepare": "husky 2>/dev/null || true"
},
"engines": {
"node": ">=20",
"bun": ">=1.1"
},
"packageManager": "bun@1.3.0",
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@commitlint/cli": "21.0.1",
"@commitlint/config-conventional": "21.0.1",
"@types/bun": "^1.3.14",
"@types/node": "25.9.1",
"husky": "9.1.7",
"turbo": "2.9.14",
"typescript": "6.0.3",
"ultracite": "7.7.0"
}
}