Files
welshman/packages/content/package.json
T
2025-01-29 08:58:30 -08:00

37 lines
798 B
JSON

{
"name": "@welshman/content",
"version": "0.0.17",
"author": "hodlbod",
"license": "MIT",
"description": "A collection of utilities for parsing nostr note content.",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"build"
],
"engines": {
"node": ">=12.0.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": {
"@braintree/sanitize-url": "^7.0.2",
"@welshman/lib": "~0.0.37",
"nostr-tools": "^2.7.2"
}
}