mirror of
https://github.com/dergigi/boris.git
synced 2025-12-24 18:14:21 +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
89 lines
2.2 KiB
JSON
89 lines
2.2 KiB
JSON
{
|
|
"name": "applesauce-core",
|
|
"version": "4.0.0",
|
|
"description": "",
|
|
"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"
|
|
},
|
|
"./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"
|
|
},
|
|
"./models": {
|
|
"import": "./dist/models/index.js",
|
|
"require": "./dist/models/index.js",
|
|
"types": "./dist/models/index.d.ts"
|
|
},
|
|
"./models/*": {
|
|
"import": "./dist/models/*.js",
|
|
"require": "./dist/models/*.js",
|
|
"types": "./dist/models/*.d.ts"
|
|
},
|
|
"./observable": {
|
|
"import": "./dist/observable/index.js",
|
|
"require": "./dist/observable/index.js",
|
|
"types": "./dist/observable/index.d.ts"
|
|
},
|
|
"./promise": {
|
|
"import": "./dist/promise/index.js",
|
|
"require": "./dist/promise/index.js",
|
|
"types": "./dist/promise/index.d.ts"
|
|
},
|
|
"./event-store": {
|
|
"import": "./dist/event-store/index.js",
|
|
"require": "./dist/event-store/index.js",
|
|
"types": "./dist/event-store/index.d.ts"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@noble/hashes": "^1.7.1",
|
|
"@scure/base": "^1.2.4",
|
|
"debug": "^4.4.0",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"hash-sum": "^2.0.0",
|
|
"light-bolt11-decoder": "^3.2.0",
|
|
"nanoid": "^5.0.9",
|
|
"nostr-tools": "~2.17",
|
|
"rxjs": "^7.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@hirez_io/observer-spy": "^2.2.0",
|
|
"@types/debug": "^4.1.12",
|
|
"@types/hash-sum": "^1.0.2",
|
|
"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"
|
|
}
|
|
} |