-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
36 lines (36 loc) · 1.22 KB
/
package.json
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
{
"name": "testsql",
"description": "Validate and auto-generate TypeScript types from raw SQL queries in PostgreSQL.",
"version": "0.0.0",
"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!",
"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 && changeset publish",
"version": "changeset version && pnpm i --frozen-lockfile=false",
"setup": "pnpm run --parallel setup"
},
"workspaces": [
"packages/**",
"docs"
],
"engines": {
"node": "18.x"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"prettier": "^3.2.5",
"turbo": "^1.13.3",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}