buster/packages/sandbox/package.json

38 lines
1.1 KiB
JSON
Raw Normal View History

2025-07-19 04:26:46 +08:00
{
"name": "@buster/sandbox",
"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"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"scripts": {
2025-07-26 08:29:35 +08:00
"prebuild": "[ \"$SKIP_ENV_CHECK\" = \"true\" ] || tsx scripts/validate-env.ts",
2025-07-19 04:26:46 +08:00
"build": "tsc",
2025-07-26 08:29:35 +08:00
"build:dry-run": "tsc",
2025-07-19 04:26:46 +08:00
"typecheck": "tsc --noEmit",
"dev": "tsc --watch",
"lint": "biome check",
2025-07-19 05:37:29 +08:00
"test": "dotenv -e .env -- vitest run",
2025-07-19 04:47:42 +08:00
"test:unit": "vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts' --passWithNoTests",
2025-07-19 05:37:29 +08:00
"test:watch": "dotenv -e .env -- vitest watch",
"test:coverage": "dotenv -e .env -- vitest run --coverage",
"test:integration": "dotenv -e .env -- vitest run src/**/*.int.test.ts"
2025-07-19 04:26:46 +08:00
},
"dependencies": {
2025-07-22 06:00:10 +08:00
"@buster/env-utils": "workspace:*",
2025-07-19 04:26:46 +08:00
"@buster/typescript-config": "workspace:*",
2025-07-19 04:47:42 +08:00
"@buster/vitest-config": "workspace:*",
"@daytonaio/sdk": "^0.24.2",
2025-07-19 04:47:42 +08:00
"zod": "catalog:"
2025-07-19 04:26:46 +08:00
}
}