๐Ÿ“ฆ t3-oss / t3-env

๐Ÿ“„ package.json ยท 38 lines
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": "@t3-oss/env-root",
  "packageManager": "bun@1.3.1",
  "engines": {
    "node": "^24.0.0",
    "bun": "^1.3.0"
  },
  "private": true,
  "type": "module",
  "workspaces": [
    "docs",
    "examples/*",
    "packages/*"
  ],
  "scripts": {
    "turbo": "turbo --root-turbo-json .config/turbo.jsonc",
    "build": "bun run turbo run build --filter @t3-oss/env*",
    "clean": "bun run turbo run clean && rm -rf node_modules",
    "dev": "bun run turbo watch build test --filter @t3-oss/env* --filter //",
    "fmt": "oxfmt -c .config/.oxfmtrc.json",
    "lint": "oxlint -c .config/.oxlintrc.json --type-aware --type-check --deny-warnings --report-unused-disable-directives",
    "lint:fix": "oxlint -c .config/.oxlintrc.json --fix && oxfmt -c .config/.oxfmtrc.json",
    "test": "vitest --silent=passed-only",
    "test:run": "vitest run --silent=passed-only"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.5.1",
    "@changesets/cli": "^2.29.7",
    "@types/bun": "^1.3.2",
    "@typescript/native-preview": "7.0.0-dev.20251125.1",
    "oxfmt": "0.17.0",
    "oxlint": "1.32.0",
    "oxlint-tsgolint": "0.9.0",
    "turbo": "2.6.1",
    "vitest": "^4.0.15"
  }
}