39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "marketplace-scrapers-monorepo",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"packageManager": "bun@1.3.13",
|
|
"scripts": {
|
|
"typecheck": "turbo run typecheck",
|
|
"build": "bun run clean && turbo run build",
|
|
"build:api": "bun build ./packages/api-server/src/index.ts --target=bun --outdir=./dist/api --minify",
|
|
"build:mcp": "bun build ./packages/mcp-server/src/index.ts --target=bun --outdir=./dist/mcp --minify",
|
|
"build:all": "bun run build:api && bun run build:mcp",
|
|
"ci": "bun run typecheck && biome check --write",
|
|
"clean": "rm -rf dist",
|
|
"start": "./scripts/start.sh"
|
|
},
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*"
|
|
],
|
|
"catalog": {
|
|
"@tsconfig/bun": "1.0.9",
|
|
"@typescript/native-preview": "7.0.0-dev.20260428.1",
|
|
"@types/bun": "1.3.13",
|
|
"@types/cli-progress": "3.11.6",
|
|
"@types/unidecode": "1.1.0"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.3.11",
|
|
"@tsconfig/bun": "catalog:",
|
|
"turbo": "2.5.4"
|
|
},
|
|
"dependencies": {
|
|
"@types/bun": "1.3.13"
|
|
}
|
|
}
|