mirror of
https://github.com/dergigi/boris.git
synced 2025-12-25 02:24:25 +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
95 lines
2.5 KiB
JSON
95 lines
2.5 KiB
JSON
{
|
|
"name": "applesauce-factory",
|
|
"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"
|
|
},
|
|
"./blueprints": {
|
|
"import": "./dist/blueprints/index.js",
|
|
"require": "./dist/blueprints/index.js",
|
|
"types": "./dist/blueprints/index.d.ts"
|
|
},
|
|
"./blueprints/*": {
|
|
"import": "./dist/blueprints/*.js",
|
|
"require": "./dist/blueprints/*.js",
|
|
"types": "./dist/blueprints/*.d.ts"
|
|
},
|
|
"./operations": {
|
|
"import": "./dist/operations/index.js",
|
|
"require": "./dist/operations/index.js",
|
|
"types": "./dist/operations/index.d.ts"
|
|
},
|
|
"./operations/tag": {
|
|
"import": "./dist/operations/tag/index.js",
|
|
"require": "./dist/operations/tag/index.js",
|
|
"types": "./dist/operations/tag/index.d.ts"
|
|
},
|
|
"./operations/tag/*": {
|
|
"import": "./dist/operations/tag/*.js",
|
|
"require": "./dist/operations/tag/*.js",
|
|
"types": "./dist/operations/tag/*.d.ts"
|
|
},
|
|
"./operations/*": {
|
|
"import": "./dist/operations/*.js",
|
|
"require": "./dist/operations/*.js",
|
|
"types": "./dist/operations/*.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"
|
|
},
|
|
"./event-factory": {
|
|
"import": "./dist/event-factory.js",
|
|
"require": "./dist/event-factory.js",
|
|
"types": "./dist/event-factory.d.ts"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"applesauce-content": "^4.0.0",
|
|
"applesauce-core": "^4.0.0",
|
|
"nanoid": "^5.0.9",
|
|
"nostr-tools": "^2.13"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.13.1",
|
|
"@vitest/coverage-v8": "2.1.8",
|
|
"applesauce-signers": "^4.0.0",
|
|
"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",
|
|
"watch:test": "vitest"
|
|
}
|
|
} |