40 lines
1010 B
JSON
40 lines
1010 B
JSON
{
|
|
"name": "@welshman/signer",
|
|
"version": "0.4.2",
|
|
"author": "hodlbod",
|
|
"license": "MIT",
|
|
"description": "A nostr signer implemenation supporting several login methods.",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"type": "module",
|
|
"main": "dist/signer/src/index.js",
|
|
"types": "dist/signer/src/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "pnpm run clean && pnpm run compile --force",
|
|
"clean": "rimraf ./dist",
|
|
"compile": "tsc -b tsconfig.build.json",
|
|
"prepublishOnly": "pnpm run build"
|
|
},
|
|
"dependencies": {
|
|
"@noble/curves": "^1.7.0",
|
|
"@noble/hashes": "^1.6.1",
|
|
"@welshman/lib": "workspace:*",
|
|
"@welshman/net": "workspace:*",
|
|
"@welshman/util": "workspace:*",
|
|
"nostr-tools": "^2.14.2"
|
|
},
|
|
"devDependencies": {
|
|
"@capacitor/core": "^7.2.0",
|
|
"nostr-signer-capacitor-plugin": "~0.0.4",
|
|
"rimraf": "~6.0.0",
|
|
"typescript": "~5.8.0"
|
|
},
|
|
"peerDependencies": {
|
|
"nostr-signer-capacitor-plugin": "~0.0.4"
|
|
}
|
|
}
|