mirror of
https://github.com/Cameri/nostream.git
synced 2025-03-18 05:41:49 +01:00
# [1.19.0](https://github.com/Cameri/nostream/compare/v1.18.0...v1.19.0) (2023-02-02) ### Bug Fixes * crash when payments are disabled ([280e24f](280e24f75c
)) * error on heartbeat ([9d1a027](9d1a027c0d
)) * increase rate limits ([282f7db](282f7db0a1
)) * invalid type for extname() ([f578247](f5782473eb
)) * lots of bugs ([9c010e7](9c010e7865
)) * nip-11 doc and tests ([4ec6f20](4ec6f20cc9
)) * patch ([b0adba6](b0adba6abc
)) * patch knex ([ad7ab69](ad7ab69d36
)) * rate limiter err ([7778cd1](7778cd169b
)) * refactor to use process.cwd() ([2469295](24692955f9
)) * remove dupe updated_at column from invoice ([d1cdd96](d1cdd9672a
)) * remove test file which is failing ci/cd ([77177a2](77177a20c0
)) * since to be in seconds ([9021aa6](9021aa6b11
)) * typo ([f9c7dbf](f9c7dbf9dd
)) * upgrade @noble/secp256k1 from 1.7.0 to 1.7.1 ([a8f44cd](a8f44cd717
)) * upgrade ws from 8.11.0 to 8.12.0 ([779f7b7](779f7b7fe6
)) * use knex 2.4.0 everywhere ([a9b03b2](a9b03b27d7
)) ### Features * add pay-to-relay ([2618a4d](2618a4d2dc
)) * add yaml parser js-yaml ([bee6302](bee6302dd5
)) * adding powered by ZBD badge if its enabled payment processor ([54684a7](54684a76f3
)) * implement static mirroring ([cd4c60a](cd4c60a139
)) * massive update ([f9c53ee](f9c53eeeb8
)) * **utils:** refactor settings to use yaml ([5a8107f](5a8107f73c
))
140 lines
4.5 KiB
JSON
140 lines
4.5 KiB
JSON
{
|
|
"name": "nostream",
|
|
"version": "1.19.0",
|
|
"description": "A Nostr relay written in Typescript.",
|
|
"supportedNips": [
|
|
1,
|
|
2,
|
|
4,
|
|
9,
|
|
11,
|
|
12,
|
|
15,
|
|
16,
|
|
20,
|
|
22,
|
|
26,
|
|
28,
|
|
33
|
|
],
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"dev": "node -r ts-node/register src/index.ts",
|
|
"clean": "rimraf ./{dist,.nyc_output,.test-reports,.coverage}",
|
|
"build": "tsc --project tsconfig.build.json",
|
|
"prestart": "npm run build",
|
|
"start": "cd dist && node src/index.js",
|
|
"build:check": "npm run build -- --noEmit",
|
|
"lint": "eslint --ext .ts ./src ./test",
|
|
"lint:report": "eslint -o .lint-reports/eslint.json -f json --ext .ts ./src ./test",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"db:migrate": "knex migrate:latest",
|
|
"db:migrate:rollback": "knex migrate:rollback",
|
|
"db:seed": "knex seed:run",
|
|
"pretest:unit": "mkdir -p .test-reports/unit",
|
|
"test:unit": "mocha 'test/**/*.spec.ts'",
|
|
"test:unit:watch": "npm run test:unit -- --min --watch --watch-files src/**/*,test/**/*",
|
|
"cover:unit": "nyc --report-dir .coverage/unit npm run test:unit",
|
|
"docker:build": "docker build -t nostream .",
|
|
"pretest:integration": "mkdir -p .test-reports/integration",
|
|
"test:integration": "cucumber-js",
|
|
"cover:integration": "nyc --report-dir .coverage/integration npm run test:integration -- -p cover",
|
|
"docker:compose:start": "./scripts/start",
|
|
"docker:compose:stop": "./scripts/stop",
|
|
"docker:compose:clean": "./scripts/clean",
|
|
"tor:docker:compose:start": "./scripts/start_with_tor",
|
|
"tor:hostname": "./scripts/print_tor_hostname",
|
|
"tor:docker:compose:stop": "./scripts/stop",
|
|
"docker:integration:run": "docker compose -f ./test/integration/docker-compose.yml run --rm tests",
|
|
"docker:test:integration": "npm run docker:integration:run -- npm run test:integration",
|
|
"docker:cover:integration": "npm run docker:integration:run -- npm run cover:integration",
|
|
"postdocker:integration:run": "docker compose -f ./test/integration/docker-compose.yml down",
|
|
"prepare": "husky install || exit 0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Cameri/nostream.git"
|
|
},
|
|
"keywords": [
|
|
"nostr",
|
|
"relay",
|
|
"typescript"
|
|
],
|
|
"author": "Ricardo Arturo Cabral Mejía (npub1qqqqqqyz0la2jjl752yv8h7wgs3v098mh9nztd4nr6gynaef6uqqt0n47m)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Cameri/nostream/issues"
|
|
},
|
|
"homepage": "https://github.com/Cameri/nostream#readme",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "17.2.0",
|
|
"@commitlint/config-conventional": "17.2.0",
|
|
"@cucumber/cucumber": "8.7.0",
|
|
"@cucumber/pretty-formatter": "1.0.0",
|
|
"@semantic-release/commit-analyzer": "9.0.2",
|
|
"@semantic-release/git": "10.0.1",
|
|
"@semantic-release/github": "8.0.6",
|
|
"@semantic-release/npm": "9.0.1",
|
|
"@semantic-release/release-notes-generator": "10.0.3",
|
|
"@types/chai": "^4.3.1",
|
|
"@types/chai-as-promised": "^7.1.5",
|
|
"@types/debug": "4.1.7",
|
|
"@types/express": "4.17.15",
|
|
"@types/js-yaml": "4.0.5",
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/node": "18.11.18",
|
|
"@types/pg": "^8.6.5",
|
|
"@types/ramda": "^0.28.13",
|
|
"@types/sinon": "^10.0.11",
|
|
"@types/sinon-chai": "^3.2.8",
|
|
"@types/ws": "^8.5.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.19.0",
|
|
"@typescript-eslint/parser": "^5.19.0",
|
|
"chai": "^4.3.6",
|
|
"chai-as-promised": "^7.1.1",
|
|
"conventional-changelog-conventionalcommits": "5.0.0",
|
|
"cz-conventional-changelog": "3.3.0",
|
|
"eslint": "^8.13.0",
|
|
"husky": "8.0.2",
|
|
"mocha": "^9.2.2",
|
|
"mochawesome": "^7.1.3",
|
|
"nyc": "^15.1.0",
|
|
"rimraf": "^3.0.2",
|
|
"semantic-release": "19.0.5",
|
|
"semantic-release-telegram": "1.6.0",
|
|
"sinon": "15.0.1",
|
|
"sinon-chai": "^3.7.0",
|
|
"source-map-support": "^0.5.21",
|
|
"ts-node": "10.9.1",
|
|
"ts-node-dev": "^1.1.8",
|
|
"typescript": "4.6.4",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"dependencies": {
|
|
"@noble/secp256k1": "1.7.1",
|
|
"axios": "1.2.2",
|
|
"bech32": "2.0.0",
|
|
"body-parser": "1.20.1",
|
|
"debug": "4.3.4",
|
|
"dinero.js": "2.0.0-alpha.13",
|
|
"dotenv": "16.0.3",
|
|
"express": "4.18.2",
|
|
"helmet": "6.0.1",
|
|
"joi": "17.7.0",
|
|
"js-yaml": "4.1.0",
|
|
"knex": "2.4.0",
|
|
"pg": "8.8.0",
|
|
"pg-query-stream": "4.2.4",
|
|
"ramda": "0.28.0",
|
|
"redis": "4.5.1",
|
|
"rxjs": "7.8.0",
|
|
"ws": "8.12.0",
|
|
"tor-control-ts": "^1.0.0"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|