all repos — stealth-developers @ d00d0050efa6c5bcad3c96fcd82b4a6dcff2d088

pkgs/api/package.json (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
{
  "name": "@stealth-developers/api",
  "type": "module",
	"module": "src/index.ts",
	"exports": {
		".": "./dist/index.js"
	},
  "devDependencies": {
    "@types/bun": "latest"
  },
  "scripts": {
		"build:types": "tsc --emitDeclarationOnly",
		"build:js": "bun build ./src/index.ts --outdir ./dist --minify --target bun",
		"build": "bun run build:types && bun run build:js"
  },
  "peerDependencies": {
    "typescript": "^5"
  }
}