forked from t3-oss/t3-env
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 849 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 849 Bytes
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
{
"name": "@t3-oss/env-root",
"packageManager": "bun@1.2.0",
"private": true,
"type": "module",
"workspaces": [
"docs",
"examples/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --filter @t3-oss/env*",
"clean": "turbo run clean && rm -rf node_modules",
"dev": "turbo watch build test --filter @t3-oss/env* --filter //",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"test": "vitest --silent=passed-only",
"test:run": "vitest run --silent=passed-only",
"typecheck": "turbo typecheck"
},
"dependencies": {
"@biomejs/biome": "2.0.0-beta.1",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.4",
"@types/bun": "^1.2.15",
"@typescript/native-preview": "^7.0.0-dev.20250609.1",
"turbo": "2.5.4",
"vitest": "3.2.3"
}
}