client/packages/crypto/package.json

22 lines
490 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",
"comlink": "^4.4.2",
"react": "^19.2.0",
"react-dom": "^19.2.0"
}
}