cocottetech/@platform/codebase/@features/bookings-tryst/package.json
2026-06-03 23:30:02 -07:00

38 lines
1.2 KiB
JSON

{
"name": "@cocottetech/bookings-tryst-adapter",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Tryst surface adapter — cookie-mode session verification (and, later, profile actions). First per-surface adapter; see .project/designs/ai-copilot/surface-tryst.brief.md and _engineering-surface-adapter-container.md.",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./surface/metrics": {
"types": "./dist/src/surface/metrics.d.ts",
"import": "./dist/src/surface/metrics.js"
}
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:unit": "vitest run --dir src",
"e2e:cookie-login": "tsx scripts/cookie-login-e2e.ts"
},
"dependencies": {
"@cocottetech/surface-adapter-contracts": "workspace:*",
"playwright": "^1.52.0",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"devDependencies": {
"@types/node": "^20.19.30",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}