feat: add fake session adapter

This commit is contained in:
chungyeong
2026-05-10 01:27:43 +09:00
parent 1338e72e96
commit 017528b497
12 changed files with 695 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
{
"name": "@devflow/session",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --clean && tsc -p tsconfig.build.json",
"typecheck": "tsc -p ../../tsconfig.typecheck.json --noEmit",
"test": "vitest run"
},
"dependencies": {
"@devflow/core": "workspace:*"
}
}