31 lines
960 B
JSON
31 lines
960 B
JSON
{
|
|
"name": "http-to-nostr-project",
|
|
"version": "1.0.0",
|
|
"description": "HTTP to Nostr kind 21120 converter and server",
|
|
"scripts": {
|
|
"install:all": "npm run install:client && npm run install:server",
|
|
"install:client": "cd client && npm install",
|
|
"install:server": "cd server && npm install",
|
|
"build:all": "npm run build:client && npm run build:server",
|
|
"build:client": "cd client && npm run build",
|
|
"build:server": "cd server && npm run build",
|
|
"start:client": "cd client && npm run start",
|
|
"start:server": "cd server && npm run start",
|
|
"dev:server": "cd server && npm run dev",
|
|
"clean:all": "npm run clean:client && npm run clean:server",
|
|
"clean:client": "cd client && npm run clean",
|
|
"clean:server": "cd server && npm run clean"
|
|
},
|
|
"keywords": [
|
|
"nostr",
|
|
"http",
|
|
"converter"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"jsqr": "^1.4.0",
|
|
"qrcode": "^1.5.4"
|
|
}
|
|
}
|