initial commit

This commit is contained in:
pablof7z 2023-05-15 20:05:55 +02:00
commit 54de9cfa8e
26 changed files with 6950 additions and 0 deletions

52
package.json Normal file
View file

@ -0,0 +1,52 @@
{
"name": "nsecbunker",
"version": "0.1.0",
"description": "nsecbunker",
"main": "dist/index.js",
"bin": {
"nsecbunkerd": "dist/index.js",
"nsecbunker-client": "dist/client.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/sanity-island/nsecbunker"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"nsecbunkerd": "node dist/index.js",
"nsecbunker-client": "node dist/client.js"
},
"keywords": [
"nostr"
],
"author": "pablof7z",
"license": "MIT",
"dependencies": {
"@inquirer/password": "^1.0.0",
"@inquirer/prompts": "^1.0.0",
"@prisma/client": "4.13.0",
"@scure/base": "^1.1.1",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eventemitter3": "^5.0.0",
"websocket-polyfill": "^0.0.3",
"yargs": "^17.7.1"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^18.15.11",
"prisma": "^4.13.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}