forked from t3-oss/t3-env
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.15 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
{
"name": "@nurliman/env-valibot-root",
"packageManager": "[email protected]",
"private": true,
"type": "module",
"workspaces": ["examples/*", "packages/*"],
"scripts": {
"build": "turbo build --filter=./packages/*",
"dev": "turbo watch dev --filter=./packages/*",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"test": "turbo test",
"typecheck": "turbo typecheck",
"version-packages": "changeset version",
"deno:sync-version": "bun ./scripts/syncDenoVersion.ts",
"deno:publish": "bun ./scripts/publishDenoPackages.ts",
"release": "npm run build && npm run lint:fix && npm run typecheck && npm run test --filter=./packages/* && changeset publish"
},
"dependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@manypkg/get-packages": "^2.2.2",
"fs-extra": "^11.2.0",
"turbo": "^2.0.6",
"typescript": "^5.5.3"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/bun": "latest",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20"
},
"trustedDependencies": ["@biomejs/biome", "esbuild", "sharp"]
}