client/packages/crypto/package.json
Alois cd2c2f8167
Some checks failed
/ build-web (push) Failing after 6m47s
/ build-desktop (linux) (push) Failing after 7m0s
/ build-mobile (push) Failing after 9m3s
/ release (push) Has been skipped
(feat): crypto migrations
2026-07-05 21:45:44 +02:00

20 lines
472 B
JSON

{
"name": "@tensamin/crypto",
"private": true,
"version": "0.0.0",
"type": "module",
"exports": {
"./context": "./src/context.tsx",
"./encryptedDeviceSecret": "./src/encryptedDeviceSecret.ts"
},
"scripts": {
"format": "pnpm exec prettier --write .",
"lint": "eslint src",
"test": "vitest run",
"build": "pnpm run test && tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
}
}