client/packages/identity/package.json
Alois d88c554a2d
Some checks failed
/ build-desktop (linux) (push) Failing after 1m57s
/ build-web (push) Failing after 2m1s
/ build-mobile (push) Failing after 3m58s
/ release (push) Has been skipped
fix(storage): circual deps
2026-08-31 22:05:28 +02:00

27 lines
677 B
JSON

{
"name": "@tensamin/identity",
"private": true,
"version": "0.0.0",
"type": "module",
"exports": {
"./context": "./src/context.tsx",
"./session": "./src/session.tsx",
"./wrapper": "./src/wrapper.tsx",
"./values": "./src/values.ts"
},
"scripts": {
"format": "pnpm exec prettier --write .",
"lint": "eslint src",
"test": "vitest run",
"build": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@tensamin/cache": "workspace:*",
"@tensamin/mtp": "workspace:*",
"@tensamin/shared": "workspace:*",
"@tensamin/storage": "workspace:*",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"zod": "^4.4.3"
}
}