client/packages/crypto/package.json
Alois 2777ba34ca
Some checks failed
/ build-web (push) Failing after 5m33s
/ build-desktop (linux) (push) Failing after 5m46s
/ build-mobile (push) Failing after 7m58s
/ release (push) Has been skipped
(feat): more crypto migration
2026-07-06 00:13:26 +02:00

20 lines
450 B
JSON

{
"name": "@tensamin/crypto",
"private": true,
"version": "0.0.0",
"type": "module",
"exports": {
"./context": "./src/context.tsx",
"./chatSecret": "./src/chatSecret.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"
}
}