mirror of https://github.com/buster-so/buster.git
33 lines
985 B
JSON
33 lines
985 B
JSON
{
|
|
"name": "@buster/web-tools",
|
|
"version": "0.1.0",
|
|
"description": "Web scraping and research tools using Firecrawl and other services",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"build:dry-run": "tsc --build",
|
|
"lint": "biome check --write",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts' --passWithNoTests",
|
|
"test:integration": "vitest run **/*.int.test.ts **/*.integration.test.ts",
|
|
"test:coverage": "vitest --coverage",
|
|
"test:ui": "vitest --ui",
|
|
"test:watch": "vitest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@buster/typescript-config": "workspace:*",
|
|
"@buster/vitest-config": "workspace:*",
|
|
"@mendable/firecrawl-js": "^1.29.1"
|
|
}
|
|
}
|