mirror of https://github.com/buster-so/buster.git
40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
JSON
{
|
|
"name": "@buster/slack",
|
|
"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": {
|
|
"prebuild": "tsx scripts/validate-env.ts",
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"dev": "tsc --watch",
|
|
"lint": "biome check --write",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts' --passWithNoTests",
|
|
"test:watch": "vitest watch",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:integration": "vitest run src/**/*.int.test.ts"
|
|
},
|
|
"dependencies": {
|
|
"@buster/env-utils": "workspace:*",
|
|
"@slack/web-api": "^6.13.0",
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@buster/typescript-config": "workspace:*",
|
|
"@buster/vitest-config": "workspace:*",
|
|
"tsx": "catalog:"
|
|
}
|
|
}
|