34 lines
763 B
JSON
34 lines
763 B
JSON
{
|
|
"name": "@welshman/content",
|
|
"version": "0.8.0-pre.1",
|
|
"author": "hodlbod",
|
|
"license": "MIT",
|
|
"description": "A collection of utilities for parsing nostr note content.",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "pnpm run clean && pnpm run compile --force",
|
|
"clean": "rimraf ./dist",
|
|
"compile": "tsc -b tsconfig.build.json",
|
|
"prepublishOnly": "pnpm run build"
|
|
},
|
|
"dependencies": {
|
|
"@braintree/sanitize-url": "^7.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"nostr-tools": "^2.19.4"
|
|
},
|
|
"devDependencies": {
|
|
"rimraf": "~6.0.0",
|
|
"typescript": "~5.8.0",
|
|
"nostr-tools": "^2.19.4"
|
|
}
|
|
}
|