26 lines
586 B
JSON
26 lines
586 B
JSON
{
|
|
"name": "@marketplace-scrapers/api-server",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "bun ./src/index.ts",
|
|
"dev": "bun --watch ./src/index.ts",
|
|
"build": "bun build ./src/index.ts --target=bun --outdir=../../dist/api",
|
|
"typecheck": "bun tsgo"
|
|
},
|
|
"dependencies": {
|
|
"@marketplace-scrapers/core": "workspace:*",
|
|
"@typescript/native-preview": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
}
|
|
}
|