Add domain package

This commit is contained in:
Jon Staab
2024-08-13 08:31:53 -07:00
parent d561039606
commit 0576c3c0e0
14 changed files with 378 additions and 1 deletions
+38
View File
@@ -0,0 +1,38 @@
{
"name": "@welshman/domain",
"version": "0.0.1",
"author": "hodlbod",
"license": "MIT",
"description": "A collection of utilities for mapping nostr events to useful data structures.",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"build"
],
"types": "./build/src/index.d.ts",
"exports": {
".": {
"types": "./build/src/index.d.ts",
"import": "./build/src/index.mjs",
"require": "./build/src/index.cjs"
}
},
"scripts": {
"pub": "npm run lint && npm run build && npm publish",
"build": "gts clean && tsc-multi",
"lint": "gts lint",
"fix": "gts fix"
},
"devDependencies": {
"gts": "^5.0.1",
"tsc-multi": "^1.1.0",
"typescript": "~5.1.6"
},
"dependencies": {
"nostr-tools": "^2.3.2",
"@welshman/lib": "0.0.14",
"@welshman/util": "0.0.25"
}
}