Files
welshman/packages/util/package.json
T
2025-04-01 10:50:43 -07:00

38 lines
791 B
JSON

{
"name": "@welshman/util",
"version": "0.1.0",
"author": "hodlbod",
"license": "MIT",
"description": "A collection of nostr-related utilities.",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"build"
],
"engines": {
"node": ">=10.4.0"
},
"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": {
"@types/ws": "^8.5.13",
"@welshman/lib": "^0.1.0",
"nostr-tools": "^2.7.2",
"nostr-wasm": "^0.1.0"
}
}