{
  "name": "http-to-nostr-server",
  "version": "1.0.0",
  "description": "A server for processing HTTP request events from Nostr Kind 21120",
  "main": "dist/index.js",
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "ts-node src/index.ts",
    "watch": "nodemon --exec ts-node src/index.ts",
    "clean": "rm -rf dist"
  },
  "keywords": [
    "nostr",
    "http",
    "server"
  ],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "@nostr-dev-kit/ndk": "^2.0.0",
    "express": "^4.18.2",
    "node-fetch": "^3.3.2",
    "websocket-polyfill": "^0.0.3",
    "ws": "^8.14.2"
  },
  "devDependencies": {
    "@types/express": "^4.17.18",
    "@types/node": "^20.8.4",
    "@types/ws": "^8.5.6",
    "nodemon": "^3.0.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.2.2"
  },
  "type": "module"
}