client/packages/crypto/package.json
Alois 20018f09a9
Some checks failed
/ build-web (push) Failing after 3m4s
/ build-desktop (linux) (push) Failing after 3m15s
/ build-mobile (push) Failing after 9m7s
/ release (push) Has been skipped
(wip): migrate ttp to mtp
2026-07-02 21:05:50 +02:00

23 lines
521 B
JSON

{
"name": "@tensamin/crypto",
"private": true,
"version": "0.0.0",
"type": "module",
"exports": {
"./context": "./src/context.tsx",
"./worker": "./src/worker.ts"
},
"scripts": {
"format": "bunx prettier --write .",
"lint": "eslint src",
"test": "bun test",
"build": "bun 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"
}
}