-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.32 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.32 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
{
"name": "testsql",
"description": "Validate and auto-generate TypeScript types from raw SQL queries in PostgreSQL.",
"version": "0.0.0",
"type": "module",
"private": true,
"repository": "https://github.com/ts-safeql/safeql",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"lint": "turbo run lint",
"lint!": "turbo run lint!",
"publint": "turbo run publint --filter='./packages/**'",
"dev": "pnpm run --parallel --filter './packages/**' dev",
"format": "prettier --check '**/*.ts'",
"format!": "prettier --write '**/*.ts'",
"clean": "pnpm run --parallel --filter './packages/**' clean",
"release": "pnpm build --filter='./packages/**' -- --declaration && pnpm publint && changeset publish",
"version": "changeset version && pnpm i --frozen-lockfile=false",
"setup": "pnpm run --parallel setup"
},
"workspaces": [
"packages/**",
"docs"
],
"engines": {
"node": ">=24"
},
"devDependencies": {
"@changesets/cli": "catalog:",
"prettier": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
},
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}