Files
boris/node_modules/applesauce-actions/package.json
Gigi 1b8c276529 chore: upgrade applesauce packages to v4.0.0
- 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
2025-10-05 02:35:28 +01:00

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"
}
}