Files
welshman/packages/dvm/package.json
T
2025-01-28 12:26:19 -08:00

36 lines
799 B
JSON

{
"name": "@welshman/dvm",
"version": "0.0.14",
"author": "hodlbod",
"license": "MIT",
"description": "A collection of utilities for building nostr DVMs.",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"build"
],
"types": "./build/src/index.d.ts",
"exports": {
".": {
"types": "./build/src/index.d.ts",
"import": "./build/src/index.js",
"require": "./build/src/index.js"
}
},
"scripts": {
"pub": "npm run lint && npm run build && npm publish",
"build": "gts clean && tsc",
"lint": "gts lint",
"fix": "gts fix"
},
"dependencies": {
"@noble/hashes": "^1.6.1",
"@welshman/lib": "~0.0.37",
"@welshman/net": "~0.0.46",
"@welshman/util": "~0.0.59",
"nostr-tools": "^2.7.2"
}
}