43 lines
958 B
JSON
43 lines
958 B
JSON
{
|
|
"name": "@welshman/signer",
|
|
"version": "0.1.1",
|
|
"author": "hodlbod",
|
|
"license": "MIT",
|
|
"description": "A nostr signer implemenation supporting several login methods.",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"build"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.x"
|
|
},
|
|
"types": "./build/src/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./build/src/index.d.ts",
|
|
"import": "./build/src/index.js",
|
|
"require": "./build/src/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"pub": "npm run lint && npm run build && npm publish",
|
|
"build": "gts clean && tsc",
|
|
"lint": "gts lint",
|
|
"fix": "gts fix"
|
|
},
|
|
"dependencies": {
|
|
"@noble/curves": "^1.7.0",
|
|
"@noble/hashes": "^1.6.1",
|
|
"@welshman/lib": "^0.1.0",
|
|
"@welshman/net": "^0.0.49",
|
|
"@welshman/util": "^0.1.0",
|
|
"nostr-tools": "^2.7.2"
|
|
},
|
|
"peerDependencies": {
|
|
"nostr-signer-capacitor-plugin": "^0.0.3"
|
|
}
|
|
}
|