client/packages/crypto/package.json
Alois 82a483d7ab
Some checks failed
/ build-web (push) Failing after 3m41s
/ build-desktop (linux) (push) Failing after 3m43s
/ build-mobile (push) Failing after 6m33s
/ release (push) Has been skipped
(feat): migrate bun to pnpm
(feat): some mtp stuff
(wip): electron app tray
2026-07-04 01:18:54 +02:00

23 lines
529 B
JSON

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