buster/packages/env-utils/package.json

25 lines
495 B
JSON
Raw Normal View History

{
"name": "@buster/env-utils",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"dev": "tsc --watch",
2025-08-12 01:33:18 +08:00
"dev:fast": "tsc --watch",
"lint": "biome check"
},
"dependencies": {
"@buster/typescript-config": "workspace:*",
2025-07-22 06:00:10 +08:00
"dotenv": "catalog:"
}
2025-07-22 06:00:10 +08:00
}