-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.25 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
{
"name": "trustline-workspace",
"private": true,
"packageManager": "bun@1.3.11",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:cli:host": "turbo run build --filter=trustline-cli",
"build:cli:release": "bun --cwd packages/trustline run build && bun --cwd packages/trustline-cli run build:release",
"changeset": "changeset",
"check": "biome check .",
"format": "biome check --write .",
"lint": "biome lint .",
"release": "bun run release:check && changeset publish",
"release:check": "bun run build && bun run test && bun run typecheck",
"release:version": "changeset version",
"test": "turbo run test",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@changesets/cli": "^2.30.0",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.1",
"@types/node": "^24",
"@types/pg": "^8.20.0",
"@types/supertest": "^6.0.3",
"better-sqlite3": "^12.8.0",
"express": "^5",
"fastify": "^5",
"hono": "^4",
"kysely": "^0.28.14",
"mysql2": "^3.20.0",
"pg": "^8.20.0",
"supertest": "^7.1.4",
"tsup": "^8.5.0",
"turbo": "^2.8.20",
"typescript": "^6",
"vitest": "^4.1.1"
}
}