mirror of
https://github.com/dergigi/boris.git
synced 2025-12-25 18:44:23 +01:00
- Update all applesauce packages from 3.1.0 to 4.0.0 - Add applesauce-factory dependency - Version 4.0.0 includes app-data helpers needed for NIP-78
75 lines
1.8 KiB
JSON
75 lines
1.8 KiB
JSON
{
|
|
"name": "applesauce-signers",
|
|
"version": "4.0.0",
|
|
"description": "Signer classes for applesauce",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"keywords": [
|
|
"nostr",
|
|
"signer",
|
|
"nostr-connect",
|
|
"applesauce"
|
|
],
|
|
"author": "hzrd149",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./signers": {
|
|
"import": "./dist/signers/index.js",
|
|
"require": "./dist/signers/index.js",
|
|
"types": "./dist/signers/index.d.ts"
|
|
},
|
|
"./signers/*": {
|
|
"import": "./dist/signers/*.js",
|
|
"require": "./dist/signers/*.js",
|
|
"types": "./dist/signers/*.d.ts"
|
|
},
|
|
"./helpers": {
|
|
"import": "./dist/helpers/index.js",
|
|
"require": "./dist/helpers/index.js",
|
|
"types": "./dist/helpers/index.d.ts"
|
|
},
|
|
"./helpers/*": {
|
|
"import": "./dist/helpers/*.js",
|
|
"require": "./dist/helpers/*.js",
|
|
"types": "./dist/helpers/*.d.ts"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@noble/hashes": "^1.7.1",
|
|
"@noble/secp256k1": "^1.7.1",
|
|
"@scure/base": "^1.2.4",
|
|
"applesauce-core": "^4.0.0",
|
|
"debug": "^4.4.0",
|
|
"nanoid": "^5.0.9",
|
|
"nostr-tools": "~2.17",
|
|
"rxjs": "^7.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/debug": "^4.1.12",
|
|
"@types/dom-serial": "^1.0.6",
|
|
"rimraf": "^6.0.1",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.1.3",
|
|
"vitest-websocket-mock": "^0.5.0"
|
|
},
|
|
"funding": {
|
|
"type": "lightning",
|
|
"url": "lightning:nostrudel@geyser.fund"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "tsc",
|
|
"watch:build": "tsc --watch > /dev/null",
|
|
"test": "vitest run --passWithNoTests",
|
|
"watch:test": "vitest"
|
|
}
|
|
} |