nsecbunkerd/package.json

74 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2023-05-15 20:05:55 +02:00
{
2023-05-31 20:26:29 +02:00
"name": "nsecbunkerd",
2024-04-25 14:47:48 +01:00
"version": "0.10.5",
2023-05-31 20:26:29 +02:00
"description": "nsecbunker daemon",
2023-05-15 20:05:55 +02:00
"main": "dist/index.js",
"bin": {
"nsecbunkerd": "dist/index.js",
2023-12-09 23:59:08 +00:00
"nsecbunker-client": "dist/client/client.js"
2023-05-15 20:05:55 +02:00
},
"files": [
2023-05-31 20:26:29 +02:00
"dist",
"scripts/start.js",
"prisma/schema.prisma",
"LICENSE",
"README.md"
2023-05-15 20:05:55 +02:00
],
"repository": {
"type": "git",
2023-06-28 21:44:39 +02:00
"url": "https://github.com/kind-0/nsecbunkerd"
2023-05-15 20:05:55 +02:00
},
"scripts": {
2023-12-09 23:59:08 +00:00
"build": "tsup src/index.ts; tsup src/daemon/index.ts -d dist/daemon; tsup src/client.ts -d dist/client",
2023-12-20 14:57:51 +00:00
"build:client": "tsup src/client.ts -d dist/client",
2023-05-31 20:26:29 +02:00
"prisma:generate": "npx prisma generate",
"prisma:migrate": "npx prisma migrate deploy",
"prisma:create": "npx prisma db push --preview-feature",
"start": "node ./scripts/start.js",
2023-12-01 16:54:41 +00:00
"lfg": "node ./scripts/start.js start",
2023-05-15 20:05:55 +02:00
"nsecbunkerd": "node dist/index.js",
2023-12-09 23:59:08 +00:00
"client": "node dist/client/client.js"
2023-05-15 20:05:55 +02:00
},
"keywords": [
"nostr"
],
"author": "pablof7z",
2023-12-09 23:59:08 +00:00
"license": "MIT",
2023-05-15 20:05:55 +02:00
"dependencies": {
2023-12-01 11:18:39 +00:00
"@fastify/formbody": "^7.4.0",
"@fastify/view": "^8.2.0",
2023-06-25 15:30:17 +02:00
"@inquirer/password": "^1.1.2",
"@inquirer/prompts": "^1.2.3",
2024-09-21 13:44:24 -04:00
"@nostr-dev-kit/ndk": "workspace:*",
2023-12-01 11:18:39 +00:00
"@prisma/client": "^5.4.1",
2023-05-15 20:05:55 +02:00
"@scure/base": "^1.1.1",
"@types/yargs": "^17.0.24",
2024-01-02 11:11:06 +00:00
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
2023-12-01 11:18:39 +00:00
"crypto-js": "^4.2.0",
"debug": "^4.3.4",
2023-06-25 15:30:17 +02:00
"dotenv": "^16.3.1",
2023-05-15 20:05:55 +02:00
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
2023-06-25 15:30:17 +02:00
"eventemitter3": "^5.0.1",
2023-12-01 11:18:39 +00:00
"express": "^4.18.2",
2023-12-01 22:40:17 +01:00
"fastify": "^4.24.3",
2023-12-01 11:18:39 +00:00
"handlebars": "^4.7.8",
"isomorphic-ws": "^5.0.0",
2024-01-02 11:11:06 +00:00
"lnbits": "^1.1.5",
"lnbits-ts": "^0.0.2",
2023-12-01 11:18:39 +00:00
"nostr-tools": "^1.17.0",
2023-05-15 20:05:55 +02:00
"websocket-polyfill": "^0.0.3",
"ws": "^8.13.0",
2023-06-25 15:30:17 +02:00
"yargs": "^17.7.2"
2023-05-15 20:05:55 +02:00
},
"devDependencies": {
2023-06-25 15:30:17 +02:00
"@types/debug": "^4.1.8",
"@types/node": "^18.16.18",
2023-12-01 11:18:39 +00:00
"prisma": "^5.4.1",
2023-05-15 20:05:55 +02:00
"ts-node": "^10.9.1",
2023-12-01 11:18:39 +00:00
"tsup": "^7.2.0",
2023-06-25 15:30:17 +02:00
"typescript": "^5.1.3"
2023-05-15 20:05:55 +02:00
}
}