mirror of
https://github.com/dergigi/boris.git
synced 2025-12-24 10:04:19 +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
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"name": "applesauce-actions",
|
|
"version": "4.0.0",
|
|
"description": "A package for performing common nostr actions",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"keywords": [
|
|
"nostr",
|
|
"applesauce"
|
|
],
|
|
"author": "hzrd149",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./actions": {
|
|
"import": "./dist/actions/index.js",
|
|
"require": "./dist/actions/index.js",
|
|
"types": "./dist/actions/index.d.ts"
|
|
},
|
|
"./actions/*": {
|
|
"import": "./dist/actions/*.js",
|
|
"require": "./dist/actions/*.js",
|
|
"types": "./dist/actions/*.d.ts"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"applesauce-core": "^4.0.0",
|
|
"applesauce-factory": "^4.0.0",
|
|
"nostr-tools": "~2.17",
|
|
"rxjs": "^7.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@hirez_io/observer-spy": "^2.2.0",
|
|
"@types/debug": "^4.1.12",
|
|
"applesauce-signers": "^4.0.0",
|
|
"nanoid": "^5.1.5",
|
|
"rimraf": "^6.0.1",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"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"
|
|
}
|
|
} |