Files
welshman/packages/dvm/package.json
T
2025-04-02 10:48:51 -07:00

33 lines
760 B
JSON

{
"name": "@welshman/dvm",
"version": "0.1.1",
"author": "hodlbod",
"license": "MIT",
"description": "A collection of utilities for building nostr DVMs.",
"publishConfig": {
"access": "public"
},
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run clean && pnpm run compile",
"clean": "rimraf ./dist",
"compile": "tsc -b tsconfig.build.json",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@noble/hashes": "^1.6.1",
"@welshman/lib": "workspace:*",
"@welshman/net": "workspace:*",
"@welshman/util": "workspace:*",
"@welshman/signer": "workspace:*"
},
"devDependencies": {
"rimraf": "~6.0.0",
"typescript": "~5.8.0"
}
}